diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 09:55:24 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 09:55:24 +0000 |
commit | d7f63a77fdf6d605602fc968063dd8a3feb326c2 (patch) | |
tree | 91436cf86d432d7fb72686657cb18fd11e7152eb /sysutils/mbmon | |
parent | 7f76844ad4861e89ad13d50b58e85599132cf7a3 (diff) |
BROKEN on !i386 and !amd64: Does not compile
Notes
Notes:
svn path=/head/; revision=102049
Diffstat (limited to 'sysutils/mbmon')
-rw-r--r-- | sysutils/mbmon/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/mbmon/Makefile b/sysutils/mbmon/Makefile index d2c6d96f2cb2..04c3fe8f18ba 100644 --- a/sysutils/mbmon/Makefile +++ b/sysutils/mbmon/Makefile @@ -28,6 +28,12 @@ PLIST_SUB= X11_ONLY="" MAKE_ARGS+= DOCSDIR='${DOCSDIR}' INSTALL_DATA='${INSTALL_DATA}' +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "amd64" +BROKEN= "Does not compile on !i386 and !amd64" +.endif + pre-everything:: @${ECHO_CMD} "" @${ECHO_CMD} "Definable build options" @@ -41,4 +47,4 @@ post-install: (cd ${WRKSRC}; ${MAKE} ${MAKE_ARGS} install-doc) .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |