1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

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
This commit is contained in:
Akinori MUSHA 2003-01-16 05:39:55 +00:00
parent b2153803f6
commit 6bcb87cab3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73231
4 changed files with 16 additions and 4 deletions

View File

@ -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 <bsd.port.pre.mk>
.if ${ARCH} != sparc64
MAKE_ARGS= -j3
.endif
.if ${OSVERSION} >= 400014
CONFIGURE_ARGS+= --enable-ipv6
.endif

View File

@ -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

View File

@ -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

View File

@ -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 <bsd.port.pre.mk>
.if ${ARCH} != sparc64
MAKE_ARGS= -j3
.endif
.if ${OSVERSION} >= 400014
CONFIGURE_ARGS+= --enable-ipv6
.endif