From 68468076c221dc595e955d2c7982a3391ee0772a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 26 Jun 2011 03:04:07 -0400 Subject: We don't use linkobj/libc.so at runtmie, no need to check for text rels This also works around a toolchain issu. --- elf/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'elf') diff --git a/elf/Makefile b/elf/Makefile index 5c05738..fbd7d88 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 $<, $^) > $@ -- cgit v1.1