From: Felix Fietkau Date: Tue, 14 Apr 2015 12:49:30 +0000 (+0000) Subject: build: replace the deprecated find argument -perm +0100 with /0100 (#19480) X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1ea8e3cacacc3f245fe4086c13d0a1c90f6987da;p=openwrt%2Fstaging%2Frmilecki.git build: replace the deprecated find argument -perm +0100 with /0100 (#19480) Signed-off-by: Felix Fietkau SVN-Revision: 45434 --- diff --git a/include/image.mk b/include/image.mk index 6e0456f42ac..31689c7e6b8 100644 --- a/include/image.mk +++ b/include/image.mk @@ -244,8 +244,8 @@ endef define Image/mkfs/prepare/default # Use symbolic permissions to avoid clobbering SUID/SGID/sticky bits - - $(FIND) $(TARGET_DIR) -type f -not -perm +0100 -not -name 'ssh_host*' -not -name 'shadow' -print0 | $(XARGS) -0 chmod u+rw,g+r,o+r - - $(FIND) $(TARGET_DIR) -type f -perm +0100 -print0 | $(XARGS) -0 chmod u+rwx,g+rx,o+rx + - $(FIND) $(TARGET_DIR) -type f -not -perm /0100 -not -name 'ssh_host*' -not -name 'shadow' -print0 | $(XARGS) -0 chmod u+rw,g+r,o+r + - $(FIND) $(TARGET_DIR) -type f -perm /0100 -print0 | $(XARGS) -0 chmod u+rwx,g+rx,o+rx - $(FIND) $(TARGET_DIR) -type d -print0 | $(XARGS) -0 chmod u+rwx,g+rx,o+rx $(INSTALL_DIR) $(TARGET_DIR)/tmp $(TARGET_DIR)/overlay chmod 1777 $(TARGET_DIR)/tmp