diff options
author | knu <knu@FreeBSD.org> | 2003-01-16 05:39:55 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2003-01-16 05:39:55 +0000 |
commit | b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f (patch) | |
tree | 0be791bfd78322593991319f6e0a62ad7c2078be /lang/ruby | |
parent | ef40f2a7db2e8e2e9380e9f6141caa6ff2e05198 (diff) | |
download | FreeBSD-ports-b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f.zip FreeBSD-ports-b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f.tar.gz |
Avoid "make: don't know how to make INSTALLS_DEPENDS. Stop" error by
disabling parallel build on sparc64. The INSTALLS_DEPENDS thing
probably comes from bsd.port.mk, but I wonder why it is regarded as a
target when it is only used as a boolean variable. I think make(1)
has some problem with parallel build (-jN) on that platform.
I could not really reproduce the error on panther, but a submitter [1]
says the build went fine if he commented the -jN option out as I
suggested.
Submitted by: Anders Andersson <anders@hack.org>,
Joao Pedras <jpedras@webvolution.net> [1],
kris
Diffstat (limited to 'lang/ruby')
-rw-r--r-- | lang/ruby/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index 7ba64d5..41eb6d6 100644 --- a/lang/ruby/Makefile +++ b/lang/ruby/Makefile @@ -56,12 +56,15 @@ CFLAGS+= -g STRIP= # none .endif -MAKE_ARGS= -j3 INSTALLS_SHLIB= yes MAN1= ruby${_RUBY_SUFFIX}.1 .include <bsd.port.pre.mk> +.if ${ARCH} != sparc64 +MAKE_ARGS= -j3 +.endif + .if ${OSVERSION} >= 400014 CONFIGURE_ARGS+= --enable-ipv6 .endif |