diff options
author | knu <knu@FreeBSD.org> | 2003-01-16 13:39:55 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2003-01-16 13:39:55 +0800 |
commit | b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f (patch) | |
tree | 0be791bfd78322593991319f6e0a62ad7c2078be | |
parent | ef40f2a7db2e8e2e9380e9f6141caa6ff2e05198 (diff) | |
download | freebsd-ports-gnome-b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f.tar.gz freebsd-ports-gnome-b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f.tar.zst freebsd-ports-gnome-b91d90a6b6646654d6c4c45bad1b8356b6ecfc1f.zip |
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
-rw-r--r-- | lang/ruby-devel/Makefile | 5 | ||||
-rw-r--r-- | lang/ruby/Makefile | 5 | ||||
-rw-r--r-- | lang/ruby16/Makefile | 5 | ||||
-rw-r--r-- | lang/ruby18/Makefile | 5 |
4 files changed, 16 insertions, 4 deletions
diff --git a/lang/ruby-devel/Makefile b/lang/ruby-devel/Makefile index 55361b778e87..72a92361c54f 100644 --- a/lang/ruby-devel/Makefile +++ b/lang/ruby-devel/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 <bsd.port.pre.mk> +.if ${ARCH} != sparc64 +MAKE_ARGS= -j3 +.endif + .if ${OSVERSION} >= 400014 CONFIGURE_ARGS+= --enable-ipv6 .endif diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index 7ba64d50b6a7..41eb6d6266e4 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 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 diff --git a/lang/ruby18/Makefile b/lang/ruby18/Makefile index 55361b778e87..72a92361c54f 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 <bsd.port.pre.mk> +.if ${ARCH} != sparc64 +MAKE_ARGS= -j3 +.endif + .if ${OSVERSION} >= 400014 CONFIGURE_ARGS+= --enable-ipv6 .endif |