nvidia-x11: undo parallel building

In ffc498c490 -j$NIX_BUILD_JOBS was added.
Somehow this caused my machine to run many many more parallel jobs than
it was supposed to, freezing the system.

If you don't experience this, feel free to revert.
This commit is contained in:
Frederik Rietdijk 2017-02-11 15:33:24 +01:00
parent 9550686be8
commit bab37c73ac

View File

@ -21,7 +21,7 @@ buildPhase() {
sysSrc=$(echo $kernel/lib/modules/$kernelVersion/source)
sysOut=$(echo $kernel/lib/modules/$kernelVersion/build)
unset src # used by the nv makefile
make SYSSRC=$sysSrc SYSOUT=$sysOut module -j$NIX_BUILD_JOBS
make SYSSRC=$sysSrc SYSOUT=$sysOut module
cd ..
fi