diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-11-22 16:34:04 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-11-23 15:23:18 -0500 |
commit | 800938a1268309932c20dc523bb226bcab4bfe18 (patch) | |
tree | 26ac53b665a7b0b61a49f32ced6245dba1707ceb /nptl_db/Makefile | |
parent | 4e6e34e6ca4cc94f5c049f274fb7840293277b94 (diff) | |
download | glibc-800938a1268309932c20dc523bb226bcab4bfe18.tar glibc-800938a1268309932c20dc523bb226bcab4bfe18.tar.gz glibc-800938a1268309932c20dc523bb226bcab4bfe18.tar.bz2 glibc-800938a1268309932c20dc523bb226bcab4bfe18.zip |
use $(READELF) rather than readelf
We setup $(READELF) and use it everywhere, so fix the two places
that were using readelf directly.
Reported-by: Denis M. <god@politeia.in>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'nptl_db/Makefile')
-rw-r--r-- | nptl_db/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl_db/Makefile b/nptl_db/Makefile index 6ccb3d0ccb..54721e7b6c 100644 --- a/nptl_db/Makefile +++ b/nptl_db/Makefile @@ -60,6 +60,6 @@ $(objpfx)libthread_db.so: $(common-objpfx)libc.so \ tests: $(objpfx)db-symbols.out $(objpfx)db-symbols.out: $(objpfx)db-symbols.v.i \ $(common-objpfx)nptl/libpthread.so - LC_ALL=C readelf -W -s $(filter %.so,$^) | $(AWK) -f $< > $@ + LC_ALL=C $(READELF) -W -s $(filter %.so,$^) | $(AWK) -f $< > $@ $(objpfx)db-symbols.v.i: db-symbols.awk |