kiss: clean up

This commit is contained in:
Dylan Araps 2019-09-16 09:41:31 +03:00
parent 17618dde90
commit 04d02f8364
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -206,7 +206,7 @@ pkg_strip() {
# Strip only files matching the below ELF types.
find "$pkg_dir/$1" -type f | while read -r file; do
case "$(readelf -h "$file" 2>/dev/null)" in
case $(readelf -h "$file" 2>/dev/null) in
*" DYN "*)
strip_opt=--strip-unneeded
;;