diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-23 09:32:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-23 09:32:25 +0000 |
commit | 6d43bf3a2a44fc0ba3a25711749b93cd4e89e39f (patch) | |
tree | e125a7bbadad8320503915cd3197003caaf60680 /sbin/wicontrol | |
parent | f60535a6426709708b03b4104913db5493e72c41 (diff) |
Enable wicontrol build on sparc.
Diffstat (limited to 'sbin/wicontrol')
-rw-r--r-- | sbin/wicontrol/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/wicontrol/Makefile b/sbin/wicontrol/Makefile index 7e88a7fff7c..542675bd59a 100644 --- a/sbin/wicontrol/Makefile +++ b/sbin/wicontrol/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.6 2002/06/20 02:52:40 fgsch Exp $ +# $OpenBSD: Makefile,v 1.7 2003/06/23 09:32:24 miod Exp $ # From: Makefile,v 1.1 1999/05/05 07:37:06 wpaul Exp $ .if (${MACHINE} == "i386") || (${MACHINE_ARCH} == "powerpc") || \ - (${MACHINE} == "alpha") || (${MACHINE_ARCH} == "sparc64") + (${MACHINE} == "alpha") || (${MACHINE} == "sparc") || \ + (${MACHINE} == "sparc64") PROG= wicontrol SRCS= wicontrol.c .else |