diff options
author | kris <kris@FreeBSD.org> | 2004-03-07 13:26:51 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-07 13:26:51 +0800 |
commit | 41fe18a45958780d6c83fd9905502254cd431e85 (patch) | |
tree | 77cf49ed821939e1ec154e5b0c895c7dea175fec /textproc/nfbtrans | |
parent | 0d9c6adbb2a92fdaa85b9c4c17f2948564067deb (diff) | |
download | freebsd-ports-gnome-41fe18a45958780d6c83fd9905502254cd431e85.tar.gz freebsd-ports-gnome-41fe18a45958780d6c83fd9905502254cd431e85.tar.zst freebsd-ports-gnome-41fe18a45958780d6c83fd9905502254cd431e85.zip |
BROKEN on amd64 and ia64: Segfault during install
Diffstat (limited to 'textproc/nfbtrans')
-rw-r--r-- | textproc/nfbtrans/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/nfbtrans/Makefile b/textproc/nfbtrans/Makefile index a905df389c2d..5dca3450646a 100644 --- a/textproc/nfbtrans/Makefile +++ b/textproc/nfbtrans/Makefile @@ -22,6 +22,12 @@ NO_WRKSUBDIR= yes ALL_TARGET= freebsd MAKEFILE= makefile +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not install on ia64 or amd64 (segfault during install)" +.endif + do-install: ${MKDIR} ${PREFIX}/share/nfbtrans/tables ${INSTALL_PROGRAM} ${WRKSRC}/nfbtrans ${PREFIX}/bin @@ -40,4 +46,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |