1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 00:56:55 -04:00
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
}