about summary refs log tree commit diff
path: root/pkgs/stdenv/darwin
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-07-03 14:20:03 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-07-03 14:21:55 +0200
commitac4958efc33322c9ae4252a1a239c33f21d8714c (patch)
tree74518177c912104bbc9f1e939f22655b8183d87d /pkgs/stdenv/darwin
parent2f45a7a3f45b0180f58f76ae20be52f94c8d926d (diff)
downloadnixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.tar
nixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.tar.gz
nixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.tar.bz2
nixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.tar.lz
nixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.tar.xz
nixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.tar.zst
nixlib-ac4958efc33322c9ae4252a1a239c33f21d8714c.zip
make-bootstrap-tools: try again to fix on Darwin
I've got no way to test, so just trying a likely safer way blindly.
Diffstat (limited to 'pkgs/stdenv/darwin')
-rw-r--r--pkgs/stdenv/darwin/make-bootstrap-tools.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
index 43775d0350b8..e447a31d4703 100644
--- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix
+++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
@@ -6,8 +6,8 @@ rec {
   coreutils_ = coreutils.override (args: {
     # We want coreutils without ACL support.
     aclSupport = false;
-    # Our tooling currently can't handle scripts in bin/, only ELFs and symlinks.
-    singleBinary = "symlinks";
+    # Problems otherwise, unlike Linux even with "symlinks".
+    singleBinary = false;
   });
 
   build = stdenv.mkDerivation {