diff options
author | kris <kris@FreeBSD.org> | 2004-02-23 13:19:11 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-23 13:19:11 +0800 |
commit | 8b6ccc4a3a5655e97bbc7015ae4695939622b9fa (patch) | |
tree | 0d0807182c0e136e0a590b75c2384cd96aa51708 /lang | |
parent | a77c6895f3ce4a2857da92fc0aad4a354e9bac55 (diff) | |
download | freebsd-ports-gnome-8b6ccc4a3a5655e97bbc7015ae4695939622b9fa.tar.gz freebsd-ports-gnome-8b6ccc4a3a5655e97bbc7015ae4695939622b9fa.tar.zst freebsd-ports-gnome-8b6ccc4a3a5655e97bbc7015ae4695939622b9fa.zip |
BROKEN on !i386 and !sparc64: Does not compile
Diffstat (limited to 'lang')
-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> |