about summary refs log tree commit diff
path: root/pkgs/stdenv/linux/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/stdenv/linux/default.nix')
-rw-r--r--pkgs/stdenv/linux/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index fdb7326958ea..eea8cf04e584 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -114,7 +114,7 @@ rec {
       shell = bootstrapTools.bash;
       initialPath = [staticTools] ++ extraPath;
       inherit fetchurlBoot;
-      extraAttrs = extraAttrs // {fetchurl = fetchurlBoot;};
+      forceFetchurlBoot = true;
       inherit gcc;
     };
 
@@ -211,6 +211,7 @@ rec {
     shell = stdenvLinuxBoot3Pkgs.bash + "/bin/sh";
     
     fetchurlBoot = stdenvLinuxBoot3.fetchurlBoot;
+    forceFetchurlBoot = false;
     
     extraAttrs = {
       inherit (stdenvLinuxBoot2Pkgs) binutils /* gcc */ glibc;