diff options
author | sbruno <sbruno@FreeBSD.org> | 2015-02-09 23:33:54 +0800 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2015-02-09 23:33:54 +0800 |
commit | 8b9283ea32557ebddc83f17296361cf112fc5854 (patch) | |
tree | 3ff4730376d433b1488266c5a2f0357e5987b66a /cad | |
parent | 3327d7da04c73f979037bffb5d8a6a593238b2cd (diff) | |
download | freebsd-ports-gnome-8b9283ea32557ebddc83f17296361cf112fc5854.tar.gz freebsd-ports-gnome-8b9283ea32557ebddc83f17296361cf112fc5854.tar.zst freebsd-ports-gnome-8b9283ea32557ebddc83f17296361cf112fc5854.zip |
Reverse the logic of architecture support.
Add a list of support architectures with a REASON that these are the only
supported targets. This will now skip this port on mips/mips64/armv6.
PR: 196970
Differential Revision: 196970
Reviewed by: hrs (in irc)
Approved by: mentor (implicit)
Diffstat (limited to 'cad')
-rw-r--r-- | cad/pcb/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cad/pcb/Makefile b/cad/pcb/Makefile index b45716e2a824..a57a0fd8c57f 100644 --- a/cad/pcb/Makefile +++ b/cad/pcb/Makefile @@ -60,9 +60,8 @@ NONE_DESC= No GUI support NONE_CONFIGURE_ON= --without-gui NONE_CONFIGURE_ENV= WISH=/usr/bin/true -.for a in ia64 powerpc sparc64 -BROKEN_${a}= Does not compile on ia64, powerpc, or sparc64 -.endfor +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= Uses x86 specific libc functions and has not been ported .include <bsd.port.options.mk> |