summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1999-06-06 15:16:40 +0000
committerniklas <niklas@openbsd.org>1999-06-06 15:16:40 +0000
commitdfa8b0e341ed453122a86a78ef058768a7e20812 (patch)
tree358fd60e60e04cea5a422421601a144e4ff99c0f
parentCompletely forgot about that one (yep, it has been in my tree for a long (diff)
downloadwireguard-openbsd-dfa8b0e341ed453122a86a78ef058768a7e20812.tar.xz
wireguard-openbsd-dfa8b0e341ed453122a86a78ef058768a7e20812.zip
Ugly workaround an alpha egcs bug
-rw-r--r--usr.sbin/afs/libarla/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/afs/libarla/Makefile b/usr.sbin/afs/libarla/Makefile
index 08f3587881f..5d0bec6278b 100644
--- a/usr.sbin/afs/libarla/Makefile
+++ b/usr.sbin/afs/libarla/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1.1.1 1998/09/14 21:53:28 art Exp $
+# $OpenBSD: Makefile,v 1.2 1999/06/06 15:16:40 niklas Exp $
#
# You don't want to understand this makefile.
@@ -13,6 +13,11 @@ CFLAGS += -DHAVE_CONFIG_H -I${.CURDIR}/../src/include -I. \
-I${.CURDIR}/../src/lib/roken -I${.CURDIR}/../src/util \
-I${.CURDIR}/../src -I${.CURDIR}/../libroken
+# XXX Until an egtcs bug gets fixed
+.if (${MACHINE_ARCH} == "alpha")
+CFLAGS += -O0
+.endif
+
.include "Makefile.lwp.inc"
.include "Makefile.rx.inc"
.include "Makefile.rxdef.inc"