From 71f854dde88c3a5dd479474770e0534af7576267 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 12 Aug 2011 23:50:21 -0400 Subject: makepkg: don't hardcode path to strip Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 8845a417..f4640149 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1018,11 +1018,11 @@ tidy_install() { find . -type f -perm -u+w 2>/dev/null | while read binary ; do case "$(file -bi "$binary")" in *application/x-sharedlib*) # Libraries (.so) - /usr/bin/strip $STRIP_SHARED "$binary";; + strip $STRIP_SHARED "$binary";; *application/x-archive*) # Libraries (.a) - /usr/bin/strip $STRIP_STATIC "$binary";; + strip $STRIP_STATIC "$binary";; *application/x-executable*) # Binaries - /usr/bin/strip $STRIP_BINARIES "$binary";; + strip $STRIP_BINARIES "$binary";; esac done fi -- cgit v1.2.3-24-g4f1b