summaryrefslogtreecommitdiff
path: root/lang/ruby16
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2003-01-16 05:39:55 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2003-01-16 05:39:55 +0000
commit6bcb87cab336ab07554ed477c613bcdf59502905 (patch)
tree59298cea3cc0b52d858fefead6a381fe9205bf23 /lang/ruby16
parentjakarta-regexp distribution seems to have moved to a new website (diff)
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
Notes
Notes: svn path=/head/; revision=73231
Diffstat (limited to 'lang/ruby16')
-rw-r--r--lang/ruby16/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/ruby16/Makefile b/lang/ruby16/Makefile
index 7ba64d50b6a7..41eb6d6266e4 100644
--- a/lang/ruby16/Makefile
+++ b/lang/ruby16/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