commit 04d02f8364dcb0a1c5610089cff842f0f675b5ff
parent 17618dde90970c91cccd70d3404bd3d059e59f61
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Mon, 16 Sep 2019 09:41:31 +0300
kiss: clean up
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kiss b/kiss
@@ -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
;;