d7c257035d
Tested db with and without __structuredAttrs.
13 lines
293 B
Bash
13 lines
293 B
Bash
preConfigurePhases="${preConfigurePhases:-} autoreconfPhase"
|
|
|
|
autoreconfPhase() {
|
|
runHook preAutoreconf
|
|
|
|
local flagsArray=()
|
|
: "${autoreconfFlags:=--install --force --verbose}"
|
|
concatTo flagsArray autoreconfFlags
|
|
|
|
autoreconf "${flagsArray[@]}"
|
|
runHook postAutoreconf
|
|
}
|