8 lines
200 B
Bash
8 lines
200 B
Bash
|
preConfigurePhases="${preConfigurePhases:-} autoreconfPhase"
|
||
|
|
||
|
autoreconfPhase() {
|
||
|
runHook preAutoreconf
|
||
|
autoreconf ${autoreconfFlags:---install --force --verbose}
|
||
|
runHook postAutoreconf
|
||
|
}
|