diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-02-01 11:03:00 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-02-01 11:03:00 +0000 |
commit | ea47421b4a654bbb478111a2a0fb7b0cb979b17a (patch) | |
tree | 3f62890ed0206ff0641bf8edc16d3530797e1bf5 /editors | |
parent | 4fa17cfa185783dc0e311368a018b9940fe6bf29 (diff) |
- Marked BROKEN for amd64 7.X
PR: 108653
Submitted by: Marcus von Appen <mva@sysfault.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=183847
Diffstat (limited to 'editors')
-rw-r--r-- | editors/hte/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/hte/Makefile b/editors/hte/Makefile index a4f4a0778a66..71e7c34264e9 100644 --- a/editors/hte/Makefile +++ b/editors/hte/Makefile @@ -24,10 +24,14 @@ PLIST_FILES= bin/ht .include <bsd.port.pre.mk> -.if ${ARCH} == ia64 +.if ${ARCH} == "ia64" BROKEN= does not build on ia64 .endif +.if ${ARCH} == "amd64" && ${OSVERSION} > 700000 +BROKEN= does not build on 7.x for amd64 +.endif + .if ${OSVERSION} < 400000 LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses .endif |