From 800938a1268309932c20dc523bb226bcab4bfe18 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 22 Nov 2012 16:34:04 -0500 Subject: 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. Signed-off-by: Mike Frysinger --- nptl_db/ChangeLog | 4 ++++ nptl_db/Makefile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'nptl_db') diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog index 417514978b..bded2fe184 100644 --- a/nptl_db/ChangeLog +++ b/nptl_db/ChangeLog @@ -1,3 +1,7 @@ +2012-11-23 Mike Frysinger + + * Makefile ($(objpfx)db-symbols.out): Change readelf to $(READELF). + 2012-10-08 Jonathan Nieder [BZ #14661] 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 -- cgit v1.2.1