diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2014-12-01 23:08:46 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-12-01 23:08:46 +0100 |
commit | e266172535eb978c071800d8895247f896eeafe1 (patch) | |
tree | 026fa2e9207e2202b3193a7387554972056aa4cb /package/wipe | |
parent | c254d121b6d880d4e87f1a2512ccae0268e6d09f (diff) | |
download | buildroot-e266172535eb978c071800d8895247f896eeafe1.tar.gz buildroot-e266172535eb978c071800d8895247f896eeafe1.zip |
wipe: ensure binary gets installed with proper permissions
Reported-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/wipe')
-rw-r--r-- | package/wipe/wipe.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/wipe/wipe.mk b/package/wipe/wipe.mk index ee4682c5a4..38cb434b4e 100644 --- a/package/wipe/wipe.mk +++ b/package/wipe/wipe.mk @@ -12,7 +12,7 @@ WIPE_LICENSE = GPLv2+ WIPE_LICENSE_FILES = LICENSE define WIPE_INSTALL_TARGET_CMDS - $(INSTALL) -D $(@D)/wipe $(TARGET_DIR)/usr/bin/wipe + $(INSTALL) -D -m 0755 $(@D)/wipe $(TARGET_DIR)/usr/bin/wipe endef $(eval $(autotools-package)) |