diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-16 18:24:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-16 18:24:57 +0000 |
commit | 4e33e07f6096f9fa8ebc04a29cee5c0b28ea13a6 (patch) | |
tree | b4b826f9131cc411148bc99f81ac74283122c84f /Makefile | |
parent | 5f03158f66dc2c73b052307f3871c4341fbabb8e (diff) | |
download | busybox-w32-4e33e07f6096f9fa8ebc04a29cee5c0b28ea13a6.tar.gz busybox-w32-4e33e07f6096f9fa8ebc04a29cee5c0b28ea13a6.tar.bz2 busybox-w32-4e33e07f6096f9fa8ebc04a29cee5c0b28ea13a6.zip |
strip -> $(STRIP); fix "unused variable" warning
(patch by Diekema, Jon (AGRE) <Jon.Diekema@smiths-aerospace.com>)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -681,7 +681,7 @@ busybox_unstripped: $(busybox-all) FORCE | |||
681 | $(Q)rm -f .old_version | 681 | $(Q)rm -f .old_version |
682 | 682 | ||
683 | busybox: busybox_unstripped | 683 | busybox: busybox_unstripped |
684 | $(Q)strip -s --remove-section=.note --remove-section=.comment \ | 684 | $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ |
685 | busybox_unstripped -o $@ | 685 | busybox_unstripped -o $@ |
686 | 686 | ||
687 | # The actual objects are generated when descending, | 687 | # The actual objects are generated when descending, |