From dc5bdd685252c2be9432f274186283e00bd23ac9 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Sat, 2 Jul 2022 15:45:37 -0700 Subject: [PATCH] Revert "stdenv: label the ephemeral coreutils-stage4 package" This reverts commit 23ea8b35dacd9152c9e0e21577d5afe3e39b6255. --- pkgs/stdenv/linux/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 880286bbcd2f..3b4588a70f9c 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -355,9 +355,6 @@ in # stage5.gcc -> stage4.coreutils -> stage3.glibc -> bootstrap gmp = lib.makeOverridable (super.gmp.override { stdenv = self.stdenv; }).overrideAttrs (a: { pname = "${a.pname}-stage4"; }); - # coreutils gets rebuilt both here and also in the final stage; we rename this one to avoid confusion - coreutils = super.coreutils.overrideAttrs (a: { pname = "${a.pname}-stage4"; }); - gcc = lib.makeOverridable (import ../../build-support/cc-wrapper) { nativeTools = false; nativeLibc = false;