diff options
author | Rob Landley <rob@landley.net> | 2006-08-20 23:13:33 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-20 23:13:33 +0000 |
commit | 43ee36c6dae2c0108580f646913514050e2ef59f (patch) | |
tree | ade5f4bdeac4a0b662443dca74f3a0836b0e8206 | |
parent | 0e4690d4ef9fe55ccf6db371c826112809e162f9 (diff) | |
download | busybox-w32-43ee36c6dae2c0108580f646913514050e2ef59f.tar.gz busybox-w32-43ee36c6dae2c0108580f646913514050e2ef59f.tar.bz2 busybox-w32-43ee36c6dae2c0108580f646913514050e2ef59f.zip |
Yann E. Morin spotted a broken check_ld macro.
-rw-r--r-- | Rules.mak | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -267,7 +267,7 @@ ifeq ($(strip $(CONFIG_DEBUG)),y) | |||
267 | else | 267 | else |
268 | CFLAGS +=-DNDEBUG | 268 | CFLAGS +=-DNDEBUG |
269 | CHECKED_LDFLAGS += $(call check_ld,$(LD),--sort-common,) | 269 | CHECKED_LDFLAGS += $(call check_ld,$(LD),--sort-common,) |
270 | CHECKED_LDFLAGS += $(call check_ld,--gc-sections,) | 270 | CHECKED_LDFLAGS += $(call check_ld,$(LD),--gc-sections,) |
271 | endif | 271 | endif |
272 | 272 | ||
273 | ifneq ($(strip $(CONFIG_DEBUG_PESSIMIZE)),y) | 273 | ifneq ($(strip $(CONFIG_DEBUG_PESSIMIZE)),y) |