From: Peter Korsgaard Date: Mon, 1 Dec 2014 22:08:46 +0000 (+0100) Subject: wipe: ensure binary gets installed with proper permissions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e266172535eb978c071800d8895247f896eeafe1;p=buildroot.git wipe: ensure binary gets installed with proper permissions Reported-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- 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))