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) |
* 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
@@ -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 $@ |