diff options
author | Stefan Walter <stefan@FreeBSD.org> | 2010-05-22 09:54:43 +0000 |
---|---|---|
committer | Stefan Walter <stefan@FreeBSD.org> | 2010-05-22 09:54:43 +0000 |
commit | f053a0493f28ea220cf24e5aa09e503d1f730508 (patch) | |
tree | d8b971aed278a7704882a9ec59b8e017b0f34427 /net-mgmt/docsis | |
parent | a8319ce5227c449c61a51f15309cb6b4d8fb93ce (diff) |
Use BROKEN instead of NOT_FOR_ARCHS.
Suggested by: linimon
Notes
Notes:
svn path=/head/; revision=254823
Diffstat (limited to 'net-mgmt/docsis')
-rw-r--r-- | net-mgmt/docsis/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-mgmt/docsis/Makefile b/net-mgmt/docsis/Makefile index 28d7a0b407d0..4a07d8b83c4b 100644 --- a/net-mgmt/docsis/Makefile +++ b/net-mgmt/docsis/Makefile @@ -23,10 +23,14 @@ USE_BISON= build PLIST_SUB= MIBS=share/snmp/mibs -NOT_FOR_ARCHS= amd64 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= Produces corrupt files on amd64 +.endif post-patch: @${REINPLACE_CMD} -e 's|^htmldocdir =.*|htmldocdir = ${DOCSDIR}|' ${WRKSRC}/doc/Makefile.in @${REINPLACE_CMD} -e 's|^examplesdir =.*|examplesdir = ${EXAMPLESDIR}|' ${WRKSRC}/examples/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |