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 /Rules.mak | |
parent | 0e4690d4ef9fe55ccf6db371c826112809e162f9 (diff) |
Yann E. Morin spotted a broken check_ld macro.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -267,7 +267,7 @@ ifeq ($(strip $(CONFIG_DEBUG)),y) else CFLAGS +=-DNDEBUG CHECKED_LDFLAGS += $(call check_ld,$(LD),--sort-common,) - CHECKED_LDFLAGS += $(call check_ld,--gc-sections,) + CHECKED_LDFLAGS += $(call check_ld,$(LD),--gc-sections,) endif ifneq ($(strip $(CONFIG_DEBUG_PESSIMIZE)),y) |