]> sourceware.org Git - glibc.git/commitdiff
We don't use linkobj/libc.so at runtmie, no need to check for text rels
authorUlrich Drepper <drepper@gmail.com>
Sun, 26 Jun 2011 07:04:07 +0000 (03:04 -0400)
committerUlrich Drepper <drepper@gmail.com>
Sun, 26 Jun 2011 07:04:07 +0000 (03:04 -0400)
This also works around a toolchain issu.

ChangeLog
elf/Makefile

index 390928f0637d3e71931639fb86d86eaf55e0e3e6..0745a7dd80bd831258108202c90c646c85f35d1d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-26  Ulrich Drepper  <drepper@gmail.com>
+
+       * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
+
 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
 
        * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
index 5c057387ede44f8971fb663acc96b93615fa3a19..fbd7d88c06954d0e1d3d261a7d74718985919f87 100644 (file)
@@ -973,8 +973,9 @@ ifeq (yes,$(build-shared))
 tests: $(objpfx)check-textrel.out $(objpfx)check-execstack.out
 
 all-built-dso = $(common-objpfx)libc.so \
-               $(sort $(wildcard $(common-objpfx)*/lib*.so \
-                                 $(common-objpfx)iconvdata/*.so))
+               $(filter-out $(common-objpfx)linkobj/libc.so, \
+                            $(sort $(wildcard $(common-objpfx)*/lib*.so \
+                                              $(common-objpfx)iconvdata/*.so)))
 
 $(objpfx)check-textrel.out: $(objpfx)check-textrel $(all-built-dso)
        $(dir $<)$(notdir $<) $(filter-out $<, $^) > $@
This page took 0.048855 seconds and 5 git commands to generate.