diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-03-31 01:28:02 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-03-31 01:28:02 +0000 |
commit | 391baea9cb0726e05c3cf4e98a8e99056e46961a (patch) | |
tree | 7110beaebfddc64c2d0dabffeea63c1e19c8fcdb /usr.sbin/wsconscfg | |
parent | 71c5b5638db3a9dc630e751572744952eee12715 (diff) |
Simplify MACHINE tests, the only platforms in the tree without wsdisplay
are octeon and hppa64.
Diffstat (limited to 'usr.sbin/wsconscfg')
-rw-r--r-- | usr.sbin/wsconscfg/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/usr.sbin/wsconscfg/Makefile b/usr.sbin/wsconscfg/Makefile index d78595c6deb..d9492091b83 100644 --- a/usr.sbin/wsconscfg/Makefile +++ b/usr.sbin/wsconscfg/Makefile @@ -1,13 +1,6 @@ -# $OpenBSD: Makefile,v 1.36 2016/03/09 16:28:50 deraadt Exp $ +# $OpenBSD: Makefile,v 1.37 2016/03/31 01:28:01 jsg Exp $ -.if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ - ${MACHINE} == "armish" || ${MACHINE} == "armv7" || \ - ${MACHINE} == "hppa" || ${MACHINE} == "hppa64" || \ - ${MACHINE} == "i386" || ${MACHINE} == "landisk" || \ - ${MACHINE} == "loongson" || ${MACHINE} == "luna88k" || \ - ${MACHINE} == "macppc" || ${MACHINE} == "sgi" || \ - ${MACHINE} == "socppc" || ${MACHINE} == "sparc" || \ - ${MACHINE} == "sparc64" || ${MACHINE} == "zaurus" +.if ${MACHINE} != "hppa64" && ${MACHINE} != "octeon" PROG= wsconscfg SRCS= wsconscfg.c |