From: Ulrich Drepper Date: Sun, 26 Jun 2011 07:04:07 +0000 (-0400) Subject: We don't use linkobj/libc.so at runtmie, no need to check for text rels X-Git-Tag: glibc-2.15~509 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68468076c221dc595e955d2c7982a3391ee0772a;p=thirdparty%2Fglibc.git We don't use linkobj/libc.so at runtmie, no need to check for text rels This also works around a toolchain issu. --- diff --git a/ChangeLog b/ChangeLog index 390928f0637..0745a7dd80b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-06-26 Ulrich Drepper + + * elf/Makefile (all-built-dso): No need to check linkobj/libc.so. + 2011-06-24 H.J. Lu * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo. diff --git a/elf/Makefile b/elf/Makefile index 5c057387ede..fbd7d88c069 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -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 $<, $^) > $@