From: Tzu-Jung Lee Date: Wed, 19 Jun 2013 09:24:50 +0000 (+0800) Subject: build: use find -perm /mode, instead of -perm +mode STRIP_FIND_CMD X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=88418bd2de3e2161fc5085a68c5e558a95644a07;p=buildroot.git build: use find -perm /mode, instead of -perm +mode STRIP_FIND_CMD The -perm +mode is deprecated, and sometimes yields suprising results. It can be confused with permission in symbolic mode, for example '+u+g', as POSIX spec suggests. Signed-off-by: Tzu-Jung Lee Signed-off-by: Thomas Petazzoni --- diff --git a/Makefile b/Makefile index f477124935..0cd7f5541f 100644 --- a/Makefile +++ b/Makefile @@ -449,7 +449,7 @@ STRIP_FIND_CMD = find $(TARGET_DIR) ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o endif -STRIP_FIND_CMD += -type f -perm +111 +STRIP_FIND_CMD += -type f -perm /111 STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print target-finalize: