nixpkgs/pkgs/build-support/setup-hooks/autoreconf.sh

12 lines
299 B
Bash
Raw Normal View History

preConfigurePhases+=" autoreconfPhase"
for i in @autoconf@ @automake@ @libtool@ @gettext@; do
findInputs $i nativePkgs propagated-native-build-inputs
done
autoreconfPhase() {
runHook preAutoreconf
autoreconf ${autoreconfFlags:---install --force --verbose}
runHook postAutoreconf
}