mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
7 lines
200 B
Bash
7 lines
200 B
Bash
preConfigurePhases="${preConfigurePhases:-} autoreconfPhase"
|
|
|
|
autoreconfPhase() {
|
|
runHook preAutoreconf
|
|
autoreconf ${autoreconfFlags:---install --force --verbose}
|
|
runHook postAutoreconf
|
|
}
|