summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1998-07-22 18:01:47 +0000
committermillert <millert@openbsd.org>1998-07-22 18:01:47 +0000
commita85d7ad40da0afdd79423d13a5c40969b3f41c7c (patch)
treefaa1f189b3f92a1700fbae2054190c0b28abc8c8
parento Simplify address calculations (diff)
downloadwireguard-openbsd-a85d7ad40da0afdd79423d13a5c40969b3f41c7c.tar.xz
wireguard-openbsd-a85d7ad40da0afdd79423d13a5c40969b3f41c7c.zip
gcc 2.8.1 -O2 bug
-rw-r--r--games/bs/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/games/bs/Makefile b/games/bs/Makefile
index b98b9e41436..fcc6f3530a4 100644
--- a/games/bs/Makefile
+++ b/games/bs/Makefile
@@ -1,9 +1,11 @@
-# $OpenBSD: Makefile,v 1.3 1997/09/21 11:35:37 deraadt Exp $
+# $OpenBSD: Makefile,v 1.4 1998/07/22 18:01:47 millert Exp $
PROG= bs
MAN= bs.6
DPADD= ${LIBCURSES} ${LIBTERMLIB}
LDADD= -lcurses -ltermlib
HIDEGAME=hidegame
+# XXX - -O2 exposes a gcc optimizer bug
+CFLAGS= -O ${DEBUG}
.include <bsd.prog.mk>