Skip to content

Commit

Permalink
glibcInfo: Fix build
Browse files Browse the repository at this point in the history
The build of glibcInfo has been broken since
d86588d (from NixOS#357052).

The common derivation had a makeFlags added which the info derivation
was overriding. The manual says build targets should be put in
buildFlags instead of makeFlags anyways, and doing so removes the
conflict.
  • Loading branch information
accelbread authored and jian-lin committed Dec 29, 2024
1 parent ad1321f commit 93de7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/glibc/info.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ callPackage ./common.nix { } {
perl
];

makeFlags = [ "info" ];
buildFlags = [ "info" ];

# I don't know why the info is not generated in 'build'
# Somehow building the info still does not work, because the final
Expand Down

0 comments on commit 93de7f3

Please sign in to comment.