mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 11:10:03 +00:00
5d42a8b38c
Always specify the preConfigurePhases attribute as a list instead of a string. Append elements to the preConfigurePhases Bash variable using appendToVar instead of string or Bash array concatenation.
13 lines
445 B
Bash
13 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
|
|
}
|