diff options
author | Sam Bingner <sam@bingner.com> | 2018-10-12 16:47:06 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2018-10-12 16:47:06 -1000 |
commit | 24f6d59354df69788c96f26e8c046a50c383c886 (patch) | |
tree | ed2343230d45a634b15398dfa7a7e2c67a960aba /arch/darwin-arm/strip | |
parent | 330f4f07f97d829f6337de5b20efb19e58bab319 (diff) |
Build environment changes
Diffstat (limited to 'arch/darwin-arm/strip')
-rw-r--r-- | arch/darwin-arm/strip | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/darwin-arm/strip b/arch/darwin-arm/strip deleted file mode 100644 index 151f63b9d..000000000 --- a/arch/darwin-arm/strip +++ /dev/null @@ -1,9 +0,0 @@ -find "${PKG_DEST}" -type f \( -perm -0500 -o -name '*.dylib' -o -name '*.so' \) -print0 | while read -r -d $'\0' bin; do - case "$(file "${bin}")" in (\ - *': Mach-O fat file with '*([0-9])' architecture' |\ - *': Mach-O dynamically linked shared library acorn'\ - );; (*) continue;; esac - #*': '?(setuid )?(setgid )'Mach-O executable acorn' |\ - - "${PKG_TARG}-strip" -x -no_uuid "${bin}" -done |