Re: git: 00d241bb50a1 - main - java/openjdk17: pass --with-jobs to honour MAKE_JOBS_NUMBER
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 13 Sep 2025 20:17:12 UTC
Thanks. I found that after the commit. Will change in a future update. Regards Van: Gleb Popov <arrowd@freebsd.org> Datum: 13 september 2025 22:10 Aan: Ronald Klop <ronald@freebsd.org> CC: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Onderwerp: Re: git: 00d241bb50a1 - main - java/openjdk17: pass --with-jobs to honour MAKE_JOBS_NUMBER > > > On Sat, Sep 13, 2025 at 10:33PM Ronald Klop wrote: > > > > +.if defined(MAKE_JOBS_UNSAFE) > > +CONFIGURE_ARGS+= --with-jobs=1 > > +.elif defined(MAKE_JOBS_NUMBER) > > +CONFIGURE_ARGS+= --with-jobs=${MAKE_JOBS_NUMBER} > > +.endif > > There is no need in the .ifdef > > % make -V MAKE_JOBS_NUMBER > 8 > % make -V MAKE_JOBS_NUMBER MAKE_JOBS_UNSAFE=yes > 1 > > > >