Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
12 lines
445 B
Bash
12 lines
445 B
Bash
appendToVar preConfigurePhases updateAutotoolsGnuConfigScriptsPhase
|
|
|
|
updateAutotoolsGnuConfigScriptsPhase() {
|
|
if [ -n "${dontUpdateAutotoolsGnuConfigScripts-}" ]; then return; fi
|
|
|
|
for script in config.sub config.guess; do
|
|
for f in $(find . -type f -name "$script"); do
|
|
echo "Updating Autotools / GNU config script to a newer upstream version: $f"
|
|
cp -f "@gnu_config@/$script" "$f"
|
|
done
|
|
done
|
|
}
|