diff options
author | kris <kris@FreeBSD.org> | 2004-02-26 02:35:43 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-26 02:35:43 +0800 |
commit | c485ab5e69592cbfa04aea1f29a73952220707d1 (patch) | |
tree | 5fcd66ed2380aa7b3fa455cf656e5bb02965b91d /graphics | |
parent | 311883fcb810d10cf31d1e735e01b47849b094ba (diff) | |
download | freebsd-ports-graphics-c485ab5e69592cbfa04aea1f29a73952220707d1.tar.gz freebsd-ports-graphics-c485ab5e69592cbfa04aea1f29a73952220707d1.tar.zst freebsd-ports-graphics-c485ab5e69592cbfa04aea1f29a73952220707d1.zip |
BROKEN on !i386: Does not compile
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xmrm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/xmrm/Makefile b/graphics/xmrm/Makefile index 03369a1f8c7..446a9279e06 100644 --- a/graphics/xmrm/Makefile +++ b/graphics/xmrm/Makefile @@ -26,8 +26,14 @@ USE_X_PREFIX= yes USE_XPM= yes NO_WRKSUBDIR= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xmrm ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/xmrm_mpeg ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |