diff options
author | linimon <linimon@FreeBSD.org> | 2012-09-04 14:57:36 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2012-09-04 14:57:36 +0800 |
commit | f4f6cedc9f4128ba3123f560aa4bc66183acaf3c (patch) | |
tree | bbaf5dbd314f3a0807509b03d87030411873b44e /lang/mosh | |
parent | 3da3e7eafddf5f58ac0a83e08a37c4ef012f2d9f (diff) | |
download | freebsd-ports-gnome-f4f6cedc9f4128ba3123f560aa4bc66183acaf3c.tar.gz freebsd-ports-gnome-f4f6cedc9f4128ba3123f560aa4bc66183acaf3c.tar.zst freebsd-ports-gnome-f4f6cedc9f4128ba3123f560aa4bc66183acaf3c.zip |
Mark as broken on powerpc and sparc64 (and, presumably, ia64).
Hat: portmgr
Diffstat (limited to 'lang/mosh')
-rw-r--r-- | lang/mosh/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/mosh/Makefile b/lang/mosh/Makefile index 0779d02df3ae..65b2b3b828bb 100644 --- a/lang/mosh/Makefile +++ b/lang/mosh/Makefile @@ -36,6 +36,10 @@ MAN1= mosh.1 mosh_config.1 BROKEN= Does not build on FreeBSD 7.x .endif +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" +BROKEN= Does not compile on ia64, powerpc, or sparc64 +.endif + post-patch: ${REINPLACE_CMD} 's|mosh-$$PACKAGE_VERSION|mosh|' ${WRKSRC}/configure |