diff options
author | 2012-11-04 13:40:51 +0000 | |
---|---|---|
committer | 2012-11-04 13:40:51 +0000 | |
commit | a1e83f86766a8081e5d022d989811ab51adb301c (patch) | |
tree | 63fa745989d10da6d7fa0b0d1c7b854cf6675275 | |
parent | Make the s-records boot loader use the same stage1/stage2 addresses as the (diff) | |
download | wireguard-openbsd-a1e83f86766a8081e5d022d989811ab51adb301c.tar.xz wireguard-openbsd-a1e83f86766a8081e5d022d989811ab51adb301c.zip |
Less pessimistic OPT value for m68k.
-rw-r--r-- | gnu/usr.bin/lynx/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/lynx/Makefile.bsd-wrapper b/gnu/usr.bin/lynx/Makefile.bsd-wrapper index bc07baa7518..cd131985468 100644 --- a/gnu/usr.bin/lynx/Makefile.bsd-wrapper +++ b/gnu/usr.bin/lynx/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.20 2011/06/23 22:46:12 schwarze Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.21 2012/11/04 13:40:51 miod Exp $ MAN= lynx.1 CLEANFILES+= lynx.1 @@ -7,7 +7,7 @@ DPADD= ${LIBSSL} ${LIBCRYPTO} .if (${MACHINE} == "vax") OPT=-O0 .elif (${MACHINE_ARCH} == "m68k") -OPT=-O1 +OPT=-O2 -fno-rerun-loop-opt .endif GNUCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS} ${OPT}" |