diff options
author | dholland <dholland> | 2012-05-23 03:35:27 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-05-23 03:35:27 +0000 |
commit | 54912c0cd7ce1231fd9fcbf8e2702711181db44e (patch) | |
tree | ac8c9af417fd787d9585a0589824815a818f2986 /devel | |
parent | 89f512fdd37dc75d28c67bff3494f1b418a72f13 (diff) | |
download | pkgsrc-54912c0cd7ce1231fd9fcbf8e2702711181db44e.tar.gz |
This will actually only build for i386 and x86_64 on NetBSD; for other
values of MACHINE_ARCH, set PKG_FAIL_REASON instead of going kersplut.
Making it build for a wider range of platforms should be straightforward,
but probably needs to be done by someone who actually can test-build on
those platforms.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/teem/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/teem/Makefile b/devel/teem/Makefile index 0767463de56..22c9abe5688 100644 --- a/devel/teem/Makefile +++ b/devel/teem/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2011/01/13 13:37:28 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2012/05/23 03:35:27 dholland Exp $ # DISTNAME= teem-1.8.0-src @@ -24,6 +24,8 @@ LARCH=32 . elif ${MACHINE_ARCH} == "x86_64" NARCH=64 LARCH=amd64 +. else +PKG_FAIL_REASON+= "Need configuration rules for ${MACHINE_ARCH}." . endif TEEM_ARCH=netbsd.${NARCH} |