[pacman-dev] [PATCH] makepkg: don't hardcode path to strip

Allan McRae allan at archlinux.org
Sun Aug 14 06:55:55 EDT 2011


On 14/08/11 06:07, Dave Reisner wrote:
> Signed-off-by: Dave Reisner<dreisner at archlinux.org>
> ---
>   scripts/makepkg.sh.in |    6 +++---
>   1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
> index 8845a41..f464014 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

Ack.  I went through the history of those full paths to strip until 
about 2007 and the only reason I can find that the full path is used is 
because it seems to always have been...

Allan



More information about the pacman-dev mailing list