1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00: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. # Strip only files matching the below ELF types.
find "$pkg_dir/$1" -type f | while read -r file; do 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 "*) *" DYN "*)
strip_opt=--strip-unneeded strip_opt=--strip-unneeded
;; ;;