diff options
author | pav <pav@FreeBSD.org> | 2011-05-02 06:45:59 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-05-02 06:45:59 +0800 |
commit | 6bb4166aa15331143a071c7a6e327bac01405030 (patch) | |
tree | a6e66fc9a0d400646319e0c9b7307dd7f5720cb8 /lang/gauche | |
parent | 0a993860c7bf6e221871213db9078e3516d35fa5 (diff) | |
download | freebsd-ports-graphics-6bb4166aa15331143a071c7a6e327bac01405030.tar.gz freebsd-ports-graphics-6bb4166aa15331143a071c7a6e327bac01405030.tar.zst freebsd-ports-graphics-6bb4166aa15331143a071c7a6e327bac01405030.zip |
- Disallow from amd64/9 on pointyhat, segfaults during build
Reported by: pointyhat
Diffstat (limited to 'lang/gauche')
-rw-r--r-- | lang/gauche/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/gauche/Makefile b/lang/gauche/Makefile index a8ac034955f..5de10a35fc0 100644 --- a/lang/gauche/Makefile +++ b/lang/gauche/Makefile @@ -54,6 +54,10 @@ INFO= gauche-refe gauche-refj BROKEN= Does not compile on ${ARCH} .endif +.if ${ARCH} == "amd64" && ${OSVERSION} >= 900000 +MANUAL_PACKAGE_BUILD= segfaults on pointyhat +.endif + post-patch: .if defined(NOPORTDOCS) @${REINPLACE_CMD} -e 's|all: info|all:|' ${WRKSRC}/doc/Makefile.in |