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-cc3f20b9bdf9a46c41877dab4900eb2997b72019.tar.gz |
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) else $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ busybox_unstripped -o $@ +# strip is confused by PIE executable and does not set exec bits + $(Q)chmod a+x $@ endif # The actual objects are generated when descending, |