It would seem that both ar and full_ar need to be overridden
Jarkko Hietaniemi [Wed, 25 Apr 2001 13:58:07 +0000 (13:58 +0000)]
for HP-UX to avoid the GNU ar.

p4raw-id: //depot/perl@9835

hints/hpux.sh

index f6b18fd..bd1e268 100644 (file)
@@ -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" ;;