make-bootstrap-tools: grab libc from stdenv.cc.libc

This is the same in current cases AFAICT,
other than uses musl instead of glibc when musl-native.

+1 -3
+1 -3
pkgs/stdenv/linux/make-bootstrap-tools.nix
··· 4 4 5 5 let 6 6 pkgs = import ../../.. { inherit localSystem crossSystem; }; 7 - libc = if pkgs.hostPlatform != pkgs.buildPlatform 8 - then pkgs.libcCross 9 - else pkgs.glibc; 7 + libc = pkgs.stdenv.cc.libc; 10 8 in with pkgs; rec { 11 9 12 10