about summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-14 19:17:23 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-14 19:17:23 +0100
commita0bbe58a194934f4f503f3215a5a40e6b112c79e (patch)
treeca96881ff72f88f8f07d233617fc168c56b68ccd /pkgs/tools/misc/coreutils
parenta5ea0a3f50c9f9d2d8ee7280fdebe0c23f8c351c (diff)
downloadnixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.tar
nixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.tar.gz
nixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.tar.bz2
nixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.tar.lz
nixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.tar.xz
nixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.tar.zst
nixlib-a0bbe58a194934f4f503f3215a5a40e6b112c79e.zip
coreutils: Disable parallel building
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index e5f9eb1be2c0..b0dbb049cbf7 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -58,7 +58,9 @@ let
     # and {Open,Free}BSD.
     doCheck = stdenv ? glibc;
 
-    enableParallelBuilding = true;
+    # Saw random failures like ‘help2man: can't get '--help' info from
+    # man/sha512sum.td/sha512sum’.
+    enableParallelBuilding = false;
 
     NIX_LDFLAGS = optionalString selinuxSupport "-lsepol";