diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-06-29 10:57:46 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-06-29 10:57:46 +0000 |
commit | 17ad866aff02c2981c62916ae8d9737d2b10d9fd (patch) | |
tree | edb44b18f5926e776e32c9a44a2cc689170f6803 /hints | |
parent | 0a1bd7acb04f7cfb7bc0973e9fa8f84b971137e7 (diff) | |
download | perl-17ad866aff02c2981c62916ae8d9737d2b10d9fd.tar.gz |
HP-UX 10.20 still *needs* -Ae for HP C-ANSI-C to be ANSI
11.00 and on are ANSI by default for /opt/ansic/bin
Error was introduced by #22975 in re-enabling 10.01
p4raw-id: //depot/perl@23007
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index 335b3dd461..8fe709284f 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -142,7 +142,7 @@ case `$cc -v 2>&1`"" in *) ccflags="-Ae $cc_cppflags" # +vnocompatwarnings not known in 10.10 and older if [ $xxOsRev -ge 1020 ]; then - ccflags="$cc_cppflags -Wl,+vnocompatwarnings" + ccflags="$ccflags -Wl,+vnocompatwarnings" fi ;; esac |