nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1appendToVar preConfigurePhases autoreconfPhase
2
3autoreconfPhase() {
4 runHook preAutoreconf
5
6 local flagsArray=()
7 if [[ -v autoreconfFlags ]]; then
8 concatTo flagsArray autoreconfFlags
9 else
10 flagsArray+=(--install --force --verbose)
11 fi
12
13 autoreconf "${flagsArray[@]}"
14 runHook postAutoreconf
15}