diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-23 05:19:11 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-23 05:19:11 +0000 |
commit | b9ff0bade6a8cb7f37bc4f7d62b0d100351897ba (patch) | |
tree | bd8c3598191d51a82ce9548e53099f51eb31c2be | |
parent | 475aa0b1d2fe085d6ed82a28903975a081040bff (diff) | |
download | ports-b9ff0bade6a8cb7f37bc4f7d62b0d100351897ba.tar.gz ports-b9ff0bade6a8cb7f37bc4f7d62b0d100351897ba.zip |
BROKEN on !i386 and !sparc64: Does not compile
Notes
Notes:
svn path=/head/; revision=101824
-rw-r--r-- | lang/forth/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/forth/Makefile b/lang/forth/Makefile index 020fa2c2d194..9f7200ef81d6 100644 --- a/lang/forth/Makefile +++ b/lang/forth/Makefile @@ -24,6 +24,12 @@ CONFIGURE_ARGS= --disable-float MAN1= pfe.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "sparc64" +BROKEN= "Does not compile on !i386 and !sparc64" +.endif + post-install: ${INSTALL_MAN} ${WRKSRC}/../doc/pfe.1 ${PREFIX}/man/man1 .if !defined(NOPORTDOCS) @@ -31,4 +37,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/../doc/*.html ${PREFIX}/share/doc/pfe .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |