kiss: Minor nitpicks

This commit is contained in:
Dylan Araps 2020-03-26 12:45:22 +02:00
parent be5d87b3ff
commit 759dc1081a
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 3 deletions

4
kiss
View File

@ -350,8 +350,6 @@ pkg_order() {
pkg_strip() {
# Strip package binaries and libraries. This saves space on the
# system as well as on the tar-balls we ship for installation.
# Package has stripping disabled, stop here.
[ -f "$mak_dir/$pkg/nostrip" ] && return
log "$1" "Stripping binaries and libraries"
@ -370,7 +368,7 @@ pkg_strip() {
strip "--strip-$strip_opt" "$file" &&
printf 'Stripped %10s %s\n' "($strip_opt)" "${file##$pkg_dir/$1}"
done 2>/dev/null
done 2>/dev/null ||:
}
pkg_fixdeps() {