diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-22 21:03:21 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-22 21:03:21 +0000 |
commit | a4d4d31464c3623f3b266b40bdb363407d87c86f (patch) | |
tree | db38aeab9aba29603451c672ca66c5b3c820aa8e | |
parent | b83b6fb03b7f33216ddee4d034822f81773c7948 (diff) | |
download | busybox-w32-a4d4d31464c3623f3b266b40bdb363407d87c86f.tar.gz busybox-w32-a4d4d31464c3623f3b266b40bdb363407d87c86f.tar.bz2 busybox-w32-a4d4d31464c3623f3b266b40bdb363407d87c86f.zip |
We make both busybox and busybox_unstripped all the time now, no need to
specify whether or not to strip the binary.
git-svn-id: svn://busybox.net/trunk/busybox@14611 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | Config.in | 7 | ||||
-rw-r--r-- | Rules.mak | 6 |
2 files changed, 1 insertions, 12 deletions
@@ -326,13 +326,6 @@ config CONFIG_EFENCE | |||
326 | 326 | ||
327 | endchoice | 327 | endchoice |
328 | 328 | ||
329 | config CONFIG_STRIP_BINARIES | ||
330 | bool "Strip busybox objects" | ||
331 | default y if !CONFIG_DEBUG | ||
332 | default n if CONFIG_DEBUG | ||
333 | help | ||
334 | Whether or not we strip the busybox binary and such. | ||
335 | |||
336 | config CONFIG_DEBUG_YANK_SUSv2 | 329 | config CONFIG_DEBUG_YANK_SUSv2 |
337 | bool "Disable obsolete features removed before SUSv3?" | 330 | bool "Disable obsolete features removed before SUSv3?" |
338 | default y | 331 | default y |
@@ -196,11 +196,7 @@ else | |||
196 | LDFLAGS += $(call check_ld,--warn-common,) | 196 | LDFLAGS += $(call check_ld,--warn-common,) |
197 | LDFLAGS += $(call check_ld,--sort-common,) | 197 | LDFLAGS += $(call check_ld,--sort-common,) |
198 | endif | 198 | endif |
199 | ifeq ($(CONFIG_STRIP_BINARIES),y) | 199 | STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment |
200 | STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment | ||
201 | else | ||
202 | STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging | ||
203 | endif | ||
204 | ifeq ($(strip $(CONFIG_STATIC)),y) | 200 | ifeq ($(strip $(CONFIG_STATIC)),y) |
205 | PROG_CFLAGS += $(call check_gcc,-static,) | 201 | PROG_CFLAGS += $(call check_gcc,-static,) |
206 | endif | 202 | endif |