diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2010-12-24 18:30:26 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-08-22 10:55:32 +0200 |
commit | 87162f462e8189943ee723b9bcff71269df2310d (patch) | |
tree | 5932849fb13a481f8c9751624dbc68ffadb94999 | |
parent | 91b392a4bab0c2dc90e7e3ff914dec20b97adca8 (diff) | |
download | glibc-87162f462e8189943ee723b9bcff71269df2310d.zip glibc-87162f462e8189943ee723b9bcff71269df2310d.tar.gz glibc-87162f462e8189943ee723b9bcff71269df2310d.tar.bz2 |
Fix testsuite link failure
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | dlfcn/Makefile | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2011-08-22 Andreas Schwab <schwab@redhat.com> + + * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd + $(elfobjdir)/ld.so. + 2011-08-21 Ulrich Drepper <drepper@gmail.com> * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed. diff --git a/dlfcn/Makefile b/dlfcn/Makefile index 578bc3f..dd4fb83 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -124,7 +124,8 @@ $(objpfx)bug-atexit1.out: $(objpfx)bug-atexit1-lib.so $(objpfx)bug-atexit2: $(libdl) $(objpfx)bug-atexit2.out: $(objpfx)bug-atexit2-lib.so -LDLIBS-bug-atexit3-lib.so = -lstdc++ -lgcc_eh $(common-objpfx)libc_nonshared.a +LDLIBS-bug-atexit3-lib.so = -lstdc++ -lgcc_eh $(elfobjdir)/ld.so \ + $(common-objpfx)libc_nonshared.a $(objpfx)bug-atexit3: $(libdl) $(objpfx)bug-atexit3.out: $(objpfx)bug-atexit3-lib.so |