From 9729e65706f46bd04d6e5946e20bd3c7ff4d7cc3 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 13 Dec 2006 17:44:24 +0000 Subject: - honor CONFIG_DEBUG --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f13c8b651..45d60f024 100644 --- a/Makefile +++ b/Makefile @@ -567,13 +567,13 @@ busybox-all := $(core-y) $(libs-y) # May be overridden by arch/$(ARCH)/Makefile quiet_cmd_busybox__ ?= LINK $@ ifdef CONFIG_STATIC - cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) \ + cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) $(LDFLAGS) \ -static \ -o $@ \ -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ -Wl,--start-group $(busybox-all) -Wl,--end-group else - cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) -o $@ \ + cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) -o $@ $(LDFLAGS) \ -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ -Wl,--start-group $(busybox-all) -Wl,--end-group endif -- cgit v1.2.3