diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-05 04:49:35 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-05 04:49:35 +0000 |
commit | 5c84d0ab18e42690c9ef767b65b4d4753f97b147 (patch) | |
tree | d2c33fb41bc6bb99f8fa36ddc9a1679ec8bf7534 /devel/str | |
parent | BROKEN on ia64 and amd64: Does not compile (diff) |
BROKEN on amd64: Does not compile
Notes
Notes:
svn path=/head/; revision=102973
Diffstat (limited to 'devel/str')
-rw-r--r-- | devel/str/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/str/Makefile b/devel/str/Makefile index 470bb3d58ca2..8b6f025fef76 100644 --- a/devel/str/Makefile +++ b/devel/str/Makefile @@ -20,10 +20,16 @@ CONFIGURE_ARGS= --prefix=${PREFIX} MAN1= str-config.1 MAN3= str.3 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + post-build: @${ECHO_MSG} "===> Use 'make test' to run a quick test suite." test: @cd ${WRKSRC} && ${MAKE} test -.include <bsd.port.mk> +.include <bsd.port.post.mk> |