diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-25 13:58:07 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-25 13:58:07 +0000 |
commit | 167d2fcb219640a09fe03cfcf63694ea4d41b3cb (patch) | |
tree | 2bd7a3ba30328aaef89c1de522049e47e9bb9275 /hints/hpux.sh | |
parent | 8ff950ac4dd6a40327ca0d02f43bd42adf4f89ec (diff) | |
download | perl-167d2fcb219640a09fe03cfcf63694ea4d41b3cb.tar.gz |
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
Diffstat (limited to 'hints/hpux.sh')
-rw-r--r-- | hints/hpux.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index f6b18fdcfc..bd1e268f09 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" ;; |