summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpkgmk.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgmk.in b/pkgmk.in
index 6c45fcc2..d282e7e7 100755
--- a/pkgmk.in
+++ b/pkgmk.in
@@ -426,10 +426,10 @@ strip_files() {
find . -type f -printf "%P\n" | $FILTER | while read FILE; do
case $(file -b "$FILE") in
- *ELF*executable*not\ stripped)
+ *ELF*executable*not\ stripped,*)
strip --strip-all "$FILE"
;;
- *ELF*shared\ object*not\ stripped)
+ *ELF*shared\ object*not\ stripped,*)
strip --strip-unneeded "$FILE"
;;
current\ ar\ archive)

Generated by cgit