From b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f Mon Sep 17 00:00:00 2001 From: knu Date: Thu, 16 Jan 2003 05:39:55 +0000 Subject: 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 , Joao Pedras [1], kris --- lang/ruby18/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lang/ruby18/Makefile') diff --git a/lang/ruby18/Makefile b/lang/ruby18/Makefile index 55361b778e8..72a92361c54 100644 --- a/lang/ruby18/Makefile +++ b/lang/ruby18/Makefile @@ -55,7 +55,6 @@ CFLAGS+= -g STRIP= # none .endif -MAKE_ARGS= -j3 INSTALLS_SHLIB= yes MAN1= ruby${_RUBY_SUFFIX}.1 @@ -63,6 +62,10 @@ LATEST_LINK= ruby-devel .include +.if ${ARCH} != sparc64 +MAKE_ARGS= -j3 +.endif + .if ${OSVERSION} >= 400014 CONFIGURE_ARGS+= --enable-ipv6 .endif -- cgit