about summary refs log tree commit diff
path: root/elf/Makefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2007-10-20 00:54:16 +0000
committerRoland McGrath <roland@gnu.org>2007-10-20 00:54:16 +0000
commit0a80eb74fd87e956b413555e01b1ae2e53a885e2 (patch)
treee7d208c0705f809d7b2d1c75a9f27a60504cce1a /elf/Makefile
parent46ae88502d06cd86c24440ae66edc98c3f0eadad (diff)
downloadglibc-0a80eb74fd87e956b413555e01b1ae2e53a885e2.tar.gz
glibc-0a80eb74fd87e956b413555e01b1ae2e53a885e2.tar.xz
glibc-0a80eb74fd87e956b413555e01b1ae2e53a885e2.zip
2007-10-19 Roland McGrath <roland@redhat.com>
	* elf/Makefile ($(objpfx)ld.so): Use $(AWK).
	* scripts/check-errnos.sh: Likewise.
Diffstat (limited to 'elf/Makefile')
-rw-r--r--elf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile
index 2943acc66b..e5812e3668 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -308,7 +308,7 @@ $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map)
 		  -Wl,-soname=$(rtld-installed-name) -T $@.lds
 	rm -f $@.lds
 	readelf -s $@ \
-	  | awk '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
+	  | $(AWK) '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
 
 # interp.c exists just to get this string into the libraries.
 CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"' \