diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2006-03-17 11:11:43 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2006-03-17 11:11:43 +0000 |
commit | d0933c648593bab364ce6961642bc27113c06829 (patch) | |
tree | 6a8bf08e90666a1036922073964480456c63e7a3 /comms/vpb-driver | |
parent | 07e0d9ced24182934d546ae880c56a5b0cb0e2f0 (diff) |
Use BROKEN instead of NOT_FOR_ARCHS since the problem on sparc64
seems to be a compilation error
CC: chris@forkin.com
Notes
Notes:
svn path=/head/; revision=157485
Diffstat (limited to 'comms/vpb-driver')
-rw-r--r-- | comms/vpb-driver/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/comms/vpb-driver/Makefile b/comms/vpb-driver/Makefile index b47cc850c042..ac1b2e70887c 100644 --- a/comms/vpb-driver/Makefile +++ b/comms/vpb-driver/Makefile @@ -32,7 +32,9 @@ SED_SCRIPT= -e 's,%%PREFIX%%,${PREFIX},g' \ IGNORE= requires kernel source (/usr/src/sys) to build .endif -NOT_FOR_ARCHS= sparc64 +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64 +.endif .if ${OSVERSION} < 502000 || ${OSVERSION} >= 600000 IGNORE= is not for FreeBSD versions < 502000, or >= 600000 |