diff options
author | 2008-05-13 21:29:32 +0000 | |
---|---|---|
committer | 2008-05-13 21:29:32 +0000 | |
commit | 2a5e3e8a9799d46c6f598af08591461ad9d6041a (patch) | |
tree | 891ba9990a73d0540284a01f7f206fe2fd66ab90 | |
parent | socppc is powerpc (diff) | |
download | wireguard-openbsd-2a5e3e8a9799d46c6f598af08591461ad9d6041a.tar.xz wireguard-openbsd-2a5e3e8a9799d46c6f598af08591461ad9d6041a.zip |
Disable more wscons bits on socppc.
-rw-r--r-- | distrib/special/kbd/Makefile | 7 | ||||
-rw-r--r-- | etc/Makefile | 7 | ||||
-rw-r--r-- | sbin/kbd/Makefile | 7 |
3 files changed, 12 insertions, 9 deletions
diff --git a/distrib/special/kbd/Makefile b/distrib/special/kbd/Makefile index 879dffadb3c..c4ec93c976d 100644 --- a/distrib/special/kbd/Makefile +++ b/distrib/special/kbd/Makefile @@ -1,7 +1,8 @@ -# $OpenBSD: Makefile,v 1.13 2006/05/09 21:17:13 miod Exp $ +# $OpenBSD: Makefile,v 1.14 2008/05/13 21:29:32 miod Exp $ -.if ${MACHINE} != "aviion" && ${MACHINE} != "mvme68k" && \ - ${MACHINE} != "mvme88k" +.if ${MACHINE} != "aviion" && ${MACHINE} != "landisk" && \ + ${MACHINE} != "mvme68k" && ${MACHINE} != "mvme88k" && \ + ${MACHINE} != "socppc" PROG= kbd COPTS+= -Os diff --git a/etc/Makefile b/etc/Makefile index 70b715283ef..7661fcd3267 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.262 2008/05/13 20:44:54 miod Exp $ +# $OpenBSD: Makefile,v 1.263 2008/05/13 21:29:36 miod Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= Canada/Mountain @@ -21,8 +21,9 @@ BIN1= changelist ccd.conf csh.cshrc csh.login csh.logout daily dhcpd.conf \ etc.${MACHINE}/disktab dhclient.conf mailer.conf ntpd.conf \ moduli pf.os sensorsd.conf ifstated.conf -.if ${MACHINE} != "aviion" && ${MACHINE} != "mvme68k" && \ - ${MACHINE} != "mvme88k" && ${MACHINE} != "landisk" +.if ${MACHINE} != "aviion" && ${MACHINE} != "landisk" && \ + ${MACHINE} != "mvme68k" && ${MACHINE} != "mvme88k" && \ + ${MACHINE} != "socppc" BIN1+= wsconsctl.conf .endif diff --git a/sbin/kbd/Makefile b/sbin/kbd/Makefile index af115ab7662..5768647ab31 100644 --- a/sbin/kbd/Makefile +++ b/sbin/kbd/Makefile @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile,v 1.31 2007/08/01 21:34:01 deraadt Exp $ +# $OpenBSD: Makefile,v 1.32 2008/05/13 21:29:37 miod Exp $ # # Be sure to change src/distrib/special/kbd/Makefile as well if you add or # remove architectures on this list! # -.if ${MACHINE} != "aviion" && ${MACHINE} != "mvme68k" && \ - ${MACHINE} != "mvme88k" && ${MACHINE} != "landisk" +.if ${MACHINE} != "aviion" && ${MACHINE} != "landisk" && \ + ${MACHINE} != "mvme68k" && ${MACHINE} != "mvme88k" && \ + ${MACHINE} != "socppc" PROG= kbd |