diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-26 08:07:54 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-26 08:07:54 +0000 |
commit | c3a49080f19eff73251d647e4d93e15696e92e16 (patch) | |
tree | d0fda7f1b45ffdf34a5425f34f1a52085ae3f8c4 /lang/bigloo | |
parent | 41894f003307118daa035b197a6539bd4f9e89cc (diff) |
BROKEN on !i386 and !amd64: does not compile
Notes
Notes:
svn path=/head/; revision=102165
Diffstat (limited to 'lang/bigloo')
-rw-r--r-- | lang/bigloo/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/bigloo/Makefile b/lang/bigloo/Makefile index f111f58cd1ac..de0b40504054 100644 --- a/lang/bigloo/Makefile +++ b/lang/bigloo/Makefile @@ -42,6 +42,10 @@ post-configure: .include <bsd.port.pre.mk> +.if ${ARCH} != "i386" && ${ARCH} != "amd64" +BROKEN= "Does not compile on !i386 and !amd64" +.endif + post-install: install-info @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/bigloo.sh | ${SED} "s|%%BIGLOO_VERSION%%|${PORTVERSION}|g" > ${PREFIX}/etc/rc.d/000.bigloo.sh @${CHMOD} 750 ${PREFIX}/etc/rc.d/000.bigloo.sh |