mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
perl: enableParallelBuilding when not crossCompiling
enableParallelBuilding=false was inadvertently set in f4162143
, this
commit reverts to the previous behavior of disabling parallel builds
only during during cross compilation.
The change was made due to problems with local builds during the
upgrade to perl 5.38.0, and should not have been included in the commit.
This commit is contained in:
parent
814e127d5e
commit
b04b0d0ee0
@ -123,7 +123,7 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
dontAddPrefix = !crossCompiling;
|
||||
|
||||
enableParallelBuilding = false;
|
||||
enableParallelBuilding = !crossCompiling;
|
||||
|
||||
# perl includes the build date, the uname of the build system and the
|
||||
# username of the build user in some files.
|
||||
|
Loading…
Reference in New Issue
Block a user