diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-04-05 19:17:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-04-05 19:17:26 +0000 |
commit | e33fdae7d8a5cb18db9766f0c68ab329c73a8618 (patch) | |
tree | 2449bc96f80a968e35f715292583762609b4da96 /gnu/usr.bin/perl | |
parent | a85aa144b5f3995e98e81071dd81b293b4c51cbe (diff) |
Switch mvme88k to -O2 optimization by default.
(the perl chunk discussed with millert@ and pushed upstream)
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r-- | gnu/usr.bin/perl/hints/openbsd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/hints/openbsd.sh b/gnu/usr.bin/perl/hints/openbsd.sh index e025f9b9ab6..4c59b235241 100644 --- a/gnu/usr.bin/perl/hints/openbsd.sh +++ b/gnu/usr.bin/perl/hints/openbsd.sh @@ -85,10 +85,10 @@ d_suidsafe=$define # cc is gcc so we can do better than -O # Allow a command-line override, such as -Doptimize=-g case "${ARCH}-${osvers}" in -hppa-3.3|m88k-2.*) +hppa-3.3|m88k-2.*|m88k-3.[0-3]) test "$optimize" || optimize='-O0' ;; -m88k-3.*) +m88k-3.4) test "$optimize" || optimize='-O1' ;; *) |