Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
binutils: avoid texinfo dependency during bootstrap
Normally binutils provides pregenerated manuals along with release tarball. Manuals regeneration is needed every time we change `configure.ac`. But usually there are no material changes in it. This change instead inhibits manuals regeenration by keeping man and info files up to date. The diff of bootstrap tree before and after the change: $ nix-store --query --graph $(nix-instantiate -A stdenv) | fgrep ' -> ' | awk '{print $3}' | sort -u | sed 's/"[0-9a-z]\{32\}-/"/g' | sort > before $ nix-store --query --graph $(nix-instantiate -A stdenv) | fgrep ' -> ' | awk '{print $3}' | sort -u | sed 's/"[0-9a-z]\{32\}-/"/g' | sort > after $ diff -U0 before after --- before +++ after @@ -100 +99,0 @@ -"texinfo-6.8.drv" Co-authored-by: Adam Joseph <54836058+amjoseph-nixpkgs@users.noreply.github.com>
- Loading branch information