diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 22:31:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 22:31:52 +0000 |
commit | cc3f20b9bdf9a46c41877dab4900eb2997b72019 (patch) | |
tree | 4447fc490a0f65921d5c324283da20c837121535 /Makefile | |
parent | 211b59be431350b2cc6685f5365ad5e6b597dc18 (diff) | |
download | busybox-w32-cc3f20b9bdf9a46c41877dab4900eb2997b72019.tar.gz busybox-w32-cc3f20b9bdf9a46c41877dab4900eb2997b72019.tar.bz2 busybox-w32-cc3f20b9bdf9a46c41877dab4900eb2997b72019.zip |
fix breakage found by randomconfig
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -698,6 +698,8 @@ ifeq ($(SKIP_STRIP),y) | |||
698 | else | 698 | else |
699 | $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ | 699 | $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ |
700 | busybox_unstripped -o $@ | 700 | busybox_unstripped -o $@ |
701 | # strip is confused by PIE executable and does not set exec bits | ||
702 | $(Q)chmod a+x $@ | ||
701 | endif | 703 | endif |
702 | 704 | ||
703 | # The actual objects are generated when descending, | 705 | # The actual objects are generated when descending, |