summary refs log tree commit diff
path: root/pkgs/build-support/setup-hooks/autoreconf.sh
blob: 027c83221633e6407ed56fd6483503299195e4a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
preConfigurePhases+=" autoreconfPhase"

for i in @autoconf@ @automake@ @libtool@; do
    findInputs $i nativePkgs propagated-build-native-inputs
done

autoreconfPhase() {
    runHook preAutoreconf
    autoreconf ${autoreconfFlags:---install --force}
    runHook postAutoreconf
}