From 27943a04d6dd135628c2313525ebffbcd76cc514 Mon Sep 17 00:00:00 2001 From: Daenyth Blank Date: Sun, 27 Apr 2008 12:43:41 -0400 Subject: makepkg: fix strip section to allow spaces in paths Inside tidy_install, change the section which strips libraries to use find | while read rather than for foo in `find`. This should allow whitespaces in filenames to still be processed correctly. This fixes FS#10294. Signed-off-by: Daenyth Blank Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 79c3fd17..54676667 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -751,12 +751,14 @@ tidy_install() { if [ "$(check_option strip)" = "y" ]; then msg2 "$(gettext "Stripping debugging symbols from binaries and libraries...")" - for file in $(find {,usr/{,local/},opt/*/}{bin,lib,sbin} -type f 2>/dev/null || true); do - case "$(file -biz "$file")" in + local binary bindirs + bindirs="bin lib sbin usr/bin usr/lib usr/sbin usr/local/bin usr/local/lib usr/local/sbin opt/*/bin opt/*/lib opt/*/sbin" + find ${bindirs} -type f 2>/dev/null | while read binary ; do + case "$(file -biz "$binary")" in *application/x-sharedlib*) # Libraries - /usr/bin/strip --strip-debug "$file";; + /usr/bin/strip --strip-debug "$binary";; *application/x-executable*) # Binaries - /usr/bin/strip "$file";; + /usr/bin/strip "$binary";; esac done fi -- cgit v1.2.3