00c80a247d
Some package had a broken symlink named config.sub, and the script would fail.
13 lines
434 B
Bash
13 lines
434 B
Bash
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
|
|
}
|