mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
getconf: nothing uses glibc.bin for getconf, generalize to cc.libc
This commit is contained in:
parent
d3b59f864a
commit
804ae999f5
@ -13365,10 +13365,10 @@ with pkgs;
|
||||
if hostPlatform.isMusl then musl-getent
|
||||
# This may not be right on other platforms, but preserves existing behavior
|
||||
else /* if hostPlatform.libc == "glibc" then */ glibc.bin;
|
||||
|
||||
getconf =
|
||||
if hostPlatform.isMusl then musl-getconf
|
||||
# This may not be right on other platforms, but preserves existing behavior
|
||||
else /* if hostPlatform.libc == "glibc" then */ glibc.bin;
|
||||
else lib.getBin stdenv.cc.libc;
|
||||
|
||||
nettools = callPackage ../os-specific/linux/net-tools { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user