diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-04-04 04:25:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-04-04 04:25:43 +0000 |
commit | 9b28a7c56f6b92d934a58d62492954f22149e9f9 (patch) | |
tree | 3422b5d1d86fac7b952fee7b97f7e925dec6d33b | |
parent | c64b24ab8479bbda33600b239cf83926a69c8bfd (diff) |
ugh. vax has no wscons either; pt out by deraadt@
-rw-r--r-- | sbin/wsconsctl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/wsconsctl/Makefile b/sbin/wsconsctl/Makefile index 8d3ab74b77f..bee4a2e8ed8 100644 --- a/sbin/wsconsctl/Makefile +++ b/sbin/wsconsctl/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.23 2005/03/29 22:35:22 mickey Exp $ +# $OpenBSD: Makefile,v 1.24 2005/04/04 04:25:42 mickey Exp $ -.if ${MACHINE} != "mac68k" && ${MACHINE} != "mvme68k" && ${MACHINE} != "mvme88k" +.if ${MACHINE} != "mac68k" && ${MACHINE} != "mvme68k" && \ + ${MACHINE} != "mvme88k" && ${MACHINE} != "vax" PROG= wsconsctl SRCS= display.c keyboard.c keysym.c map_parse.y map_scan.l \ |