diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 07:08:25 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 07:08:25 +0000 |
commit | 787ccebeea8d49b726205e65392256bf16f1aad6 (patch) | |
tree | eb476ffb5752335de8243171f1787f503cb1fb07 /math/ruby-gmp | |
parent | BROKEN on amd64: Coredump during build (diff) |
BROKEN on amd64: Needs to link against shared library
Notes
Notes:
svn path=/head/; revision=110367
Diffstat (limited to 'math/ruby-gmp')
-rw-r--r-- | math/ruby-gmp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/ruby-gmp/Makefile b/math/ruby-gmp/Makefile index a48c3c73b4a1..9f6a475754da 100644 --- a/math/ruby-gmp/Makefile +++ b/math/ruby-gmp/Makefile @@ -26,6 +26,12 @@ INSTALL_TARGET= site-install DOCS= ChangeLog README doc/PRECISION doc/TODO +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (needs to link against shared library)" +.endif + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODDOCDIR} @@ -34,4 +40,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |