summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-07-03 16:23:36 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-07-03 16:34:46 +0200
commitdebd401b0f8bedae10c368abd0cacf75ef7f6350 (patch)
tree2f1c6bbc33437fe2c9398cb99097a2b266b7cd90
parent61ddaa08bc5edbbc3b08862a711977508dd60cde (diff)
downloadnixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.tar
nixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.tar.gz
nixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.tar.bz2
nixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.tar.lz
nixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.tar.xz
nixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.tar.zst
nixlib-debd401b0f8bedae10c368abd0cacf75ef7f6350.zip
Revert "make-bootstrap-tools: try again to fix on Darwin"
This reverts commit ac4958efc33322c9ae4252a1a239c33f21d8714c.
-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 e447a31d4703..43775d0350b8 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;
-    # Problems otherwise, unlike Linux even with "symlinks".
-    singleBinary = false;
+    # Our tooling currently can't handle scripts in bin/, only ELFs and symlinks.
+    singleBinary = "symlinks";
   });
 
   build = stdenv.mkDerivation {