diff options
author | Rob Landley | 2006-03-22 21:03:21 +0000 |
---|---|---|
committer | Rob Landley | 2006-03-22 21:03:21 +0000 |
commit | ca8d0b029bfe43ae7f168bb6a0cc8a0b42f03be0 (patch) | |
tree | db38aeab9aba29603451c672ca66c5b3c820aa8e /Rules.mak | |
parent | 2dd42799594c6197ca97ca3ec65ec73c81af0875 (diff) | |
download | busybox-ca8d0b029bfe43ae7f168bb6a0cc8a0b42f03be0.zip busybox-ca8d0b029bfe43ae7f168bb6a0cc8a0b42f03be0.tar.gz |
We make both busybox and busybox_unstripped all the time now, no need to
specify whether or not to strip the binary.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -196,11 +196,7 @@ else LDFLAGS += $(call check_ld,--warn-common,) LDFLAGS += $(call check_ld,--sort-common,) endif -ifeq ($(CONFIG_STRIP_BINARIES),y) - STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment -else - STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging -endif +STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment ifeq ($(strip $(CONFIG_STATIC)),y) PROG_CFLAGS += $(call check_gcc,-static,) endif |