From 90a62401c6c3ffbb9522a01d9905b8a4d4d9866e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 19 Jul 2005 03:54:55 +0000 Subject: [BZ #869] 2005-07-18 Roland McGrath [BZ #869] * Makerules ($(objpfx)stubs): Do cd into $(objdir) to reduce size of objdump command line. --- Makerules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makerules b/Makerules index 63b07a24a6..e95d3107ec 100644 --- a/Makerules +++ b/Makerules @@ -1390,7 +1390,7 @@ objs-for-stubs := $(foreach o,$(object-suffixes-for-libc),$(o-objects)) \ $(addprefix $(objpfx),$(extra-objs)) $(objpfx)stubs: $(objs-for-stubs) ifneq (,$(strip $(objs-for-stubs))) - $(OBJDUMP) -h $^ | \ + (cd $(objdir); $(OBJDUMP) -h $(patsubst $(objpfx)%,%,$^)) | \ $(AWK) '/\.gnu\.glibc-stub\./ { \ sub(/\.gnu\.glibc-stub\./, "", $$2); \ stubs[$$2] = 1; } \ -- cgit 1.4.1