updateAutotoolsGnuConfigScriptsHook: Only fix files
Some package had a broken symlink named config.sub, and the script would fail.
This commit is contained in:
parent
607be4d88e
commit
00c80a247d
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ updateAutotoolsGnuConfigScriptsPhase() {
|
|||
if [ -n "$dontUpdateAutotoolsGnuConfigScripts" ]; then return; fi
|
||||
|
||||
for script in config.sub config.guess; do
|
||||
for f in $(find . -name "$script"); 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
|
||||
|
|
Loading…
Reference in a new issue