1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 13:17:45 +00:00

Ports: Allow selecting multiple config_{sub,guess}_paths

Some ports may have more than one `config.sub` that is in use (vendored
dependencies, etc.). Instead of fiddling about with space-delimited
strings, let's just make that setting into an array right away.
This commit is contained in:
Tim Schumacher 2022-05-25 12:51:13 +02:00 committed by Linus Groh
parent ff90647958
commit f81e47eea8
38 changed files with 49 additions and 45 deletions

View file

@ -65,8 +65,8 @@ installopts=()
configscript=configure
configopts=()
useconfigure=false
config_sub_path=config.sub
config_guess_path=config.guess
config_sub_paths=("config.sub")
config_guess_paths=("config.guess")
use_fresh_config_sub=false
use_fresh_config_guess=false
depends=()
@ -141,11 +141,15 @@ get_new_config_guess() {
}
ensure_new_config_sub() {
get_new_config_sub "$config_sub_path"
for path in "${config_sub_paths[@]}"; do
get_new_config_sub "${path}"
done
}
ensure_new_config_guess() {
get_new_config_guess "$config_guess_path"
for path in "${config_guess_paths[@]}"; do
get_new_config_guess "${path}"
done
}
ensure_build() {