summary refs log tree commit diff
path: root/pkgs/build-support/setup-hooks/autoreconf.sh
blob: f70a10870843c533c0e33a894252fdd1905e28c3 (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-native-build-inputs
done

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