1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-12-25 16:40:07 -07:00

kiss: clean up

This commit is contained in:
Dylan Araps 2019-09-16 09:41:31 +03:00
parent 17618dde90
commit 04d02f8364

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
;;