diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-03-05 13:13:06 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-03-05 13:13:06 +0000 |
commit | 82820f17b472847d75d40aeef3720fd81103f0fd (patch) | |
tree | ab02bdc73d1823cf5be7a7762b5597eb58561644 /Makerules | |
parent | af2c08fa76dc00354560a7ae35d7fe929eb5febe (diff) | |
download | glibc-82820f17b472847d75d40aeef3720fd81103f0fd.tar.gz glibc-82820f17b472847d75d40aeef3720fd81103f0fd.tar.xz glibc-82820f17b472847d75d40aeef3720fd81103f0fd.zip |
* Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of
$(inst_slibdir) in AS_NEEDED directive.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makerules b/Makerules index 57268a6988..63b07a24a6 100644 --- a/Makerules +++ b/Makerules @@ -972,7 +972,7 @@ $(inst_libdir)/libc.so: $(common-objpfx)format.lds \ cat $<; \ echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \ '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\ - ' AS_NEEDED (' $(inst_slibdir)/$(rtld-installed-name) ') )' \ + ' AS_NEEDED (' $(slibdir)/$(rtld-installed-name) ') )' \ ) > $@.new mv -f $@.new $@ |