summaryrefslogtreecommitdiff
path: root/arch/darwin-arm/strip
diff options
context:
space:
mode:
Diffstat (limited to 'arch/darwin-arm/strip')
-rw-r--r--arch/darwin-arm/strip9
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