diff options
author | jtb <jtb> | 2003-06-23 20:36:13 +0000 |
---|---|---|
committer | jtb <jtb> | 2003-06-23 20:36:13 +0000 |
commit | b7fe612047aed8fdffdcb3c945ed99e6ee800210 (patch) | |
tree | fc1a8ad97b33b712e9b33d4a0e975f32a135c971 /net | |
parent | 0c1324d1612d68ef1aadd7c7b6a782d004034118 (diff) | |
download | pkgsrc-b7fe612047aed8fdffdcb3c945ed99e6ee800210.tar.gz |
Build with native code compilers on systems where they're available,
which now includes powerpc and sparc.
Bump PKGREVISION.
Diffstat (limited to 'net')
-rw-r--r-- | net/unison/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/unison/Makefile b/net/unison/Makefile index 238ad78abee..2fba6f5ba04 100644 --- a/net/unison/Makefile +++ b/net/unison/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.13 2003/06/18 09:22:24 agc Exp $ +# $NetBSD: Makefile,v 1.14 2003/06/23 20:36:14 jtb Exp $ # DISTNAME= src PKGNAME= unison-2.9.1 +PKGREVISION= 1 WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} CATEGORIES= net MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/stable/latest/ @@ -23,8 +24,7 @@ MAKE_ENV+= HOME=${WRKDIR} .include "../../mk/bsd.prefs.mk" -.if (${MACHINE_ARCH} != "i386") -# we don't have ocamlopt on non-i386 so don't try and use it +.if (${MACHINE_ARCH} != "i386") || (${MACHINE_ARCH} != "powerpc") || (${MACHINE_ARCH} != "sparc") MAKE_FLAGS+= NATIVE=false .endif |