diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-03-23 01:39:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-03-23 01:39:40 +0000 |
commit | 2f1b89da82e913d058c6809ba55a6ba5f0c443c3 (patch) | |
tree | 636e350834c5d697877fc5a933c7dbb1b2d314c2 | |
parent | d67058749ee0e6d5a7138de075883bf5c1e0fff5 (diff) |
cannot remember what the vax -O0 workaround in 2002 was for. wish the
commit message had explained the problem at least vaguely. disable the
workaround so that if the bug exists, it can rear it's head again
(in 10 minutes of playing around, i could not find any unusual behaviour)
-rw-r--r-- | usr.bin/systat/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile index e509b9b8410..5a6b51524f3 100644 --- a/usr.bin/systat/Makefile +++ b/usr.bin/systat/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2007/02/23 22:02:58 deanna Exp $ +# $OpenBSD: Makefile,v 1.18 2007/03/23 01:39:39 deraadt Exp $ PROG= systat @@ -12,10 +12,5 @@ LDADD= -lcurses -lm -lkvm BINGRP= kmem BINMODE=2555 -.if (${MACHINE_ARCH} == "vax") -cmds.o: - ${CC} ${CFLAGS} ${CPPFLAGS} -O0 -c $< -.endif - .include <bsd.prog.mk> |