Skip to content

Commit

Permalink
Merge pull request #274218 from NixOS/backport-274047-to-release-23.11
Browse files Browse the repository at this point in the history
[Backport release-23.11] stdenvNoLibs: fix typo
  • Loading branch information
NickCao authored Dec 14, 2023
2 parents c777f55 + ed2164a commit 1190e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ with pkgs;
};

stdenvNoLibs =
if stdenv.hostPlatform != stdenv.buildPlatform && (stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.isDarwin.useLLVM or false)
if stdenv.hostPlatform != stdenv.buildPlatform && (stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.useLLVM or false)
then
# We cannot touch binutils or cc themselves, because that will cause
# infinite recursion. So instead, we just choose a libc based on the
Expand Down

0 comments on commit 1190e17

Please sign in to comment.