From: Jarkko Hietaniemi Date: Wed, 25 Apr 2001 13:58:07 +0000 (+0000) Subject: It would seem that both ar and full_ar need to be overridden X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=167d2fcb219640a09fe03cfcf63694ea4d41b3cb;hp=8ff950ac4dd6a40327ca0d02f43bd42adf4f89ec;p=p5sagit%2Fp5-mst-13.2.git It would seem that both ar and full_ar need to be overridden for HP-UX to avoid the GNU ar. p4raw-id: //depot/perl@9835 --- diff --git a/hints/hpux.sh b/hints/hpux.sh index f6b18fd..bd1e268 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -45,7 +45,9 @@ ldflags="$ldflags -D_HPUX_SOURCE" toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"' cc=${cc:-cc} -ar=${ar:-/usr/bin/ar} + +ar=/usr/bin/ar # Yes, truly override. We do not want the GNU ar. +full_ar=$ar # I repeat, no GNU ar. arrr. case `$cc -v 2>&1`"" in *gcc*) ccisgcc="$define" ;;