aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 341bd7d5d..4a87573b7 100644
--- a/Makefile
+++ b/Makefile
@@ -677,8 +677,12 @@ busybox_unstripped: $(busybox-all) FORCE
677 $(Q)rm -f .old_version 677 $(Q)rm -f .old_version
678 678
679busybox: busybox_unstripped 679busybox: busybox_unstripped
680ifeq ($(SKIP_STRIP),y)
681 $(Q)cp $< $@
682else
680 $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ 683 $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \
681 busybox_unstripped -o $@ 684 busybox_unstripped -o $@
685endif
682 686
683# The actual objects are generated when descending, 687# The actual objects are generated when descending,
684# make sure no implicit rule kicks in 688# make sure no implicit rule kicks in