diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2017-02-18 20:02:32 +0100 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2017-02-18 20:02:32 +0100 |
commit | 8db4bc01e22cf91aa6b9022a41bd25ae8c80f132 (patch) | |
tree | c47efe909d6b6cc29dc79d052385332b74076612 | |
parent | 8a13560ef80af0dd2fd130f76ad25399500416db (diff) | |
download | pkgutils-8db4bc01e22cf91aa6b9022a41bd25ae8c80f132.tar.gz pkgutils-8db4bc01e22cf91aa6b9022a41bd25ae8c80f132.tar.xz |
pkgmk: don't assume file will print a ',' with future releases
-rwxr-xr-x | pkgmk.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |