summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-05-27 13:05:43 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-05-27 13:05:43 +0000
commitc53541bcc2b27b89b9fbc5ef131171f881952373 (patch)
tree652764da5a9cfe41d77d784a32981cff7497df54 /gnu/usr.bin
parent71ce8f9f357086375ae828520ff5b9cbf9555e31 (diff)
Real fix... this goes into OPTIMIZE, not CCFLAGS.
Recalling fixes from memory is not such a hot idea.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/perl/ext/POSIX/hints/openbsd.pl3
-rw-r--r--gnu/usr.bin/perl/ext/SDBM_File/hints/openbsd.pl2
2 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/ext/POSIX/hints/openbsd.pl b/gnu/usr.bin/perl/ext/POSIX/hints/openbsd.pl
index 89309cee112..3e12119b872 100644
--- a/gnu/usr.bin/perl/ext/POSIX/hints/openbsd.pl
+++ b/gnu/usr.bin/perl/ext/POSIX/hints/openbsd.pl
@@ -1,4 +1,5 @@
# BSD platforms have extra fields in struct tm that need to be initialized.
# XXX A Configure test is needed.
-$self->{CCFLAGS} = $Config{ccflags} . ' -O1 -DSTRUCT_TM_HASZONE' ;
+$self->{CCFLAGS} = $Config{ccflags} . ' -DSTRUCT_TM_HASZONE' ;
+$self->{OPTIMIZE} = '-O1';
diff --git a/gnu/usr.bin/perl/ext/SDBM_File/hints/openbsd.pl b/gnu/usr.bin/perl/ext/SDBM_File/hints/openbsd.pl
index c5d9d2c0703..0475a995b6f 100644
--- a/gnu/usr.bin/perl/ext/SDBM_File/hints/openbsd.pl
+++ b/gnu/usr.bin/perl/ext/SDBM_File/hints/openbsd.pl
@@ -1 +1 @@
-$self->{CCFLAGS} = $Config{ccflags} . ' -O1' ;
+$self->{OPTIMIZE} = '-O1';