mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
12 lines
279 B
Bash
12 lines
279 B
Bash
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
|
|
}
|