diff options
author | pav <pav@FreeBSD.org> | 2009-01-22 03:49:16 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-01-22 03:49:16 +0800 |
commit | 35aee71e29b3efd9afeb71ae3401a7c2984baae2 (patch) | |
tree | 11d622e3af1bb6a33e1e6bc27adda5d66c54014f /security | |
parent | 6b1fdbbbc094f5a718dfea349dbf2c6627657ff4 (diff) | |
download | freebsd-ports-gnome-35aee71e29b3efd9afeb71ae3401a7c2984baae2.tar.gz freebsd-ports-gnome-35aee71e29b3efd9afeb71ae3401a7c2984baae2.tar.zst freebsd-ports-gnome-35aee71e29b3efd9afeb71ae3401a7c2984baae2.zip |
- Mark BROKEN on amd64/7: segfault during build
Reported by: pointyhat
Diffstat (limited to 'security')
-rw-r--r-- | security/mosref/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/mosref/Makefile b/security/mosref/Makefile index decffa13e2a5..be9973e82ccc 100644 --- a/security/mosref/Makefile +++ b/security/mosref/Makefile @@ -18,6 +18,12 @@ USE_GMAKE= yes PORTDOCS= ChangeLog TODO vm-implementation.tex vm-implementation.pdf +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" && ${OSVERSION} >= 700000 +BROKEN= segmentation fault during build +.endif + # The distfile has execute bits set on everything; fix. post-extract: ${FIND} ${WRKSRC} -type f -exec ${CHMOD} a-x {} ";" @@ -34,4 +40,4 @@ post-install: cd ${WRKSRC}/doc && ${INSTALL_DATA} vm-implementation.tex vm-implementation.pdf ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |