Add MAKEOPTS in package.env, using nproc [ -j(n+1) -l(n*2) ]

Right now I'm setting MAKEOPTS in catalystrc as environment variable.
However, I suspect this *overrides* package.env, which kills our -j1
workaround for the python futex issue on m68k.

By setting the default also in package.env (earlier in the alphabet),
we might get around this

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2022-05-28 15:46:16 +02:00
parent 872afc0e5c
commit ea93b714da
No known key found for this signature in database
GPG key ID: 4C49F79E54D0A206
2 changed files with 2 additions and 0 deletions

View file

@ -0,0 +1 @@
MAKEOPTS="-j$(($(nproc)+1)) -l$(($(nproc)*2))"

View file

@ -1 +1,2 @@
*/* releng/qemu
*/* releng/maxproc