summaryrefslogtreecommitdiff
path: root/hints/unicos.sh
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-12-02 22:18:45 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-02 22:18:45 +0000
commit23fb6509afc63cde7930e13c21f5617c860fa149 (patch)
treedf6897763fa1fdfc2dbd2355747ca12e1c0db028 /hints/unicos.sh
parent2233f375aa37a706e02f773eded0886e392aa503 (diff)
downloadperl-23fb6509afc63cde7930e13c21f5617c860fa149.tar.gz
We need to replace the optimize (-O1) with
the -h scalar0 -h vector0, not append them to the ccflags. p4raw-id: //depot/perl@13431
Diffstat (limited to 'hints/unicos.sh')
-rw-r--r--hints/unicos.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/unicos.sh b/hints/unicos.sh
index 026259f6c7..e25b3fdac8 100644
--- a/hints/unicos.sh
+++ b/hints/unicos.sh
@@ -15,7 +15,7 @@ ccflags="$ccflags -h rounddiv"
# isn't correctly saved and restored --Mark P. Lutz
pp_ctl_cflags='ccflags="$ccflags -h scalar0 -h vector0"'
# Otherwise the unpack %65c checksums will fail.
-pp_pack_cflags='ccflags="$ccflags -h scalar0 -h vector0"'
+pp_pack_cflags='optimize="$ccflags -h scalar0 -h vector0"'
case "$usemymalloc" in
'') # The perl malloc.c SHOULD work says Ilya.
# But for the time being (5.004_68), alas, it doesn't. --jhi