Date: Tue, 08 May 2001 09:18:41 +0900 From: "Akinori MUSHA" <knu@iDaemons.org> To: Will Andrews <will@physics.purdue.edu>, sobomax@FreeBSD.org, mi@misha.privatelabs.com, eric@FreeBSD.org, kris@obsecurity.org, kris@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: port policies Message-ID: <867kzsn15q.wl@archon.local.idaemons.org> In-Reply-To: <20010507185852.M3246@casimir.physics.purdue.edu> References: <200105072251.f47MpH024922@Mail-In.Net> <20010507185852.M3246@casimir.physics.purdue.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
At Mon, 7 May 2001 18:58:52 -0500, Will Andrews wrote: > > On Tue, May 08, 2001 at 01:51:18AM +0300, Maxim Sobolev wrote: > > In summary: I'm all for adding PARALLEL_SAFE but think that > > default number of jobs should be 1. > > Agreed. Okay, use this new patch then. Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.366 diff -u -r1.366 bsd.port.mk --- bsd.port.mk 2001/04/22 16:47:55 1.366 +++ bsd.port.mk 2001/05/08 00:16:53 @@ -404,6 +404,9 @@ # and install stages (default: see below). # MAKE_ARGS - Any extra arguments to sub-make in build and install # stages (default: none). +# MAKE_JOBS - Specify the -jN option to be added to MAKE_ARGS when +# MAKE_JOBS_SAFE is defined (default: none). +# MAKE_JOBS_SAFE - Says that the port is safe to build with make -jN. # # For install: # @@ -748,6 +751,12 @@ SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} MAKE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT} + +#MAKE_JOBS?= -j2 + +.if defined(MAKE_JOBS_SAFE) +MAKE_ARGS+= ${MAKE_JOBS} +.endif .if defined(MANCOMPRESSED) .if ${MANCOMPRESSED} != yes && ${MANCOMPRESSED} != no && \ -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?867kzsn15q.wl>