diff options
Diffstat (limited to 'arch/darwin-arm/strip')
-rw-r--r-- | arch/darwin-arm/strip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/darwin-arm/strip b/arch/darwin-arm/strip index cc6e4d69d..5a348dd4b 100644 --- a/arch/darwin-arm/strip +++ b/arch/darwin-arm/strip @@ -1,9 +1,9 @@ find "${PKG_DEST}" -type f \( -perm -0500 -o -name '*.dylib' \) -print0 | while read -r -d $'\0' bin; do case "$(file "${bin}")" in (\ *': Mach-O fat file with '*([0-9])' architecture' |\ - *': '?(setuid )?(setgid )'Mach-O executable acorn' |\ *': Mach-O dynamically linked shared library acorn'\ );; (*) continue;; esac + #*': '?(setuid )?(setgid )'Mach-O executable acorn' |\ "${PKG_TARG}-strip" -x -no_uuid "${bin}" done |