diff options
author | kris <kris@FreeBSD.org> | 2004-04-12 04:28:06 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-04-12 04:28:06 +0000 |
commit | a6e085c24dd1bb2242893222643a5f65a6039204 (patch) | |
tree | d77846a368b157c88144603798feb111f659b351 /lang/lush/Makefile | |
parent | 47f0dab7b119e8035b9e64a39052aea8dea00f3f (diff) | |
download | FreeBSD-ports-a6e085c24dd1bb2242893222643a5f65a6039204.zip FreeBSD-ports-a6e085c24dd1bb2242893222643a5f65a6039204.tar.gz |
BROKEN on sparc64: Does not build
Diffstat (limited to 'lang/lush/Makefile')
-rw-r--r-- | lang/lush/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/lush/Makefile b/lang/lush/Makefile index c8357e5..1a93eec 100644 --- a/lang/lush/Makefile +++ b/lang/lush/Makefile @@ -28,6 +28,12 @@ CONFIGURE_ARGS= --without-bfd MAN1= lush.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not build on sparc64" +.endif + post-patch: @${REINPLACE_CMD} -E -e \ 's|opt=.+$$||; \ @@ -42,4 +48,4 @@ post-patch: 's|SDL/SDL|SDL11/SDL|; \ s|"libSDL"|\"libSDL-1.1.so.5\"|' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |