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 | |
parent | af2c08fa76dc00354560a7ae35d7fe929eb5febe (diff) | |
download | glibc-82820f17b472847d75d40aeef3720fd81103f0fd.tar glibc-82820f17b472847d75d40aeef3720fd81103f0fd.tar.gz glibc-82820f17b472847d75d40aeef3720fd81103f0fd.tar.bz2 glibc-82820f17b472847d75d40aeef3720fd81103f0fd.zip |
* Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of
$(inst_slibdir) in AS_NEEDED directive.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makerules | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2005-03-05 Jakub Jelinek <jakub@redhat.com> + * Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of + $(inst_slibdir) in AS_NEEDED directive. + * include/bits/unistd.h: New file. * include/bits/socket2.h: New file. @@ -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 $@ |