summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2012-11-02 21:53:17 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2012-11-02 21:53:17 +0000
commit3f1a0d38f36e4a12c72c42b283a0922ba3052c07 (patch)
tree36671f225885008e52b5a525805436ac5742a892
parentce6956fdbc3041c37dbda5582856080cdb564cdd (diff)
Remove 13 years old compiler bug workaround on m68k. Apparently fixed or swept
under the rug as part of the bunch of compiler fixes in the last 10+ years. No objection from espie@ (who doesn't remember exactly what the issue used to be)
-rw-r--r--usr.sbin/pwd_mkdb/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.sbin/pwd_mkdb/Makefile b/usr.sbin/pwd_mkdb/Makefile
index 4c324f51da5..a711ed93bf6 100644
--- a/usr.sbin/pwd_mkdb/Makefile
+++ b/usr.sbin/pwd_mkdb/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.8 2002/06/27 20:01:59 art Exp $
+# $OpenBSD: Makefile,v 1.9 2012/11/02 21:53:16 miod Exp $
# static because it's used by the boot floppy through a chroot.
@@ -8,8 +8,4 @@ MAN= pwd_mkdb.8
LDADD+= -lutil
DPADD+= ${LIBUTIL}
-.if (${MACHINE_ARCH} == "m68k")
-CFLAGS+=-O1
-.endif
-
.include <bsd.prog.mk>