summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-07-09 17:23:43 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-07-09 17:23:43 +0300
commit0cdf89276952e00083846dd85c7cc6291861f986 (patch)
tree32b14fd6198cfc4f5c424c00c1a33f883ac7a4fc /pkgs/stdenv
parent644d4e9ac9b5e53fe298daa6544ff4d900cc9131 (diff)
downloadnixlib-0cdf89276952e00083846dd85c7cc6291861f986.tar
nixlib-0cdf89276952e00083846dd85c7cc6291861f986.tar.gz
nixlib-0cdf89276952e00083846dd85c7cc6291861f986.tar.bz2
nixlib-0cdf89276952e00083846dd85c7cc6291861f986.tar.lz
nixlib-0cdf89276952e00083846dd85c7cc6291861f986.tar.xz
nixlib-0cdf89276952e00083846dd85c7cc6291861f986.tar.zst
nixlib-0cdf89276952e00083846dd85c7cc6291861f986.zip
darwin make-bootstrap-tools: Document reason for special coreutils
Discussion:
https://github.com/NixOS/nixpkgs/commit/ac4958efc33322c9
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/darwin/make-bootstrap-tools.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
index 78da24f9c091..deefb6bbad2d 100644
--- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix
+++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
@@ -6,7 +6,7 @@ rec {
   coreutils_ = coreutils.override (args: {
     # We want coreutils without ACL support.
     aclSupport = false;
-    # Problems otherwise, unlike Linux even with "symlinks".
+    # Cannot use a single binary build, or it gets dynamically linked against gmp.
     singleBinary = false;
   });