summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-01-08 00:16:45 -0600
committerWill Dietz <w@wdtz.org>2019-01-08 00:16:45 -0600
commit844bd5374057404ecea6cfbf3b92b89507240432 (patch)
tree012a84df1dbf2392fa10b82b8ec41eb45967f015
parent86a1a3950b7cf714357d6a9c99566a2ca1b5b6b4 (diff)
downloadnixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.tar
nixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.tar.gz
nixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.tar.bz2
nixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.tar.lz
nixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.tar.xz
nixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.tar.zst
nixpkgs-844bd5374057404ecea6cfbf3b92b89507240432.zip
bash5: enable parallel building optimistically
Works for me and they've had quite some time to fix it ;).
-rw-r--r--pkgs/shells/bash/5.0.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/shells/bash/5.0.nix b/pkgs/shells/bash/5.0.nix
index e747511be59..e36259c2496 100644
--- a/pkgs/shells/bash/5.0.nix
+++ b/pkgs/shells/bash/5.0.nix
@@ -78,9 +78,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = optional interactive readline80;
 
-  # Bash randomly fails to build because of a recursive invocation to
-  # build `version.h'.
-  enableParallelBuilding = false;
+  enableParallelBuilding = true;
 
   makeFlags = optional stdenv.hostPlatform.isCygwin [
     "LOCAL_LDFLAGS=-Wl,--export-all,--out-implib,libbash.dll.a"