diff options
author | itetcu <itetcu@FreeBSD.org> | 2007-08-15 16:51:11 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2007-08-15 16:51:11 +0800 |
commit | ee744ece0ef5b0d8bb9a90e98f72227eac5170b8 (patch) | |
tree | a151c21bf4a307c3689104f98ec9a650e96445bd /editors/yui | |
parent | 746dca0d85d5b62affb5ecfc6aae8dc1dda41879 (diff) | |
download | freebsd-ports-gnome-ee744ece0ef5b0d8bb9a90e98f72227eac5170b8.tar.gz freebsd-ports-gnome-ee744ece0ef5b0d8bb9a90e98f72227eac5170b8.tar.zst freebsd-ports-gnome-ee744ece0ef5b0d8bb9a90e98f72227eac5170b8.zip |
Mark broken on 64 bit archs.
PR: ports/115510
Submitted by: Rashid N. Achilov (maintainer)
Diffstat (limited to 'editors/yui')
-rw-r--r-- | editors/yui/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/yui/Makefile b/editors/yui/Makefile index 203e4c8c7ba4..a1703754de24 100644 --- a/editors/yui/Makefile +++ b/editors/yui/Makefile @@ -18,6 +18,12 @@ USE_AUTOTOOLS= autoconf:259 MAN1= y.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= Does not compile on 64-bit arch +.endif + post-install: ${LN} -sf ${PREFIX}/lib/yui/help_eng.html ${PREFIX}/lib/yui/yhelp.html @@ -28,4 +34,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |