diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-05-25 12:51:13 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-25 22:54:04 +0100 |
commit | f81e47eea8110b6f0751f99812930478b4ee0763 (patch) | |
tree | d3f1412fb95b3f7382dff8efaf5c7e9b006a1b28 /Ports/mc | |
parent | ff90647958fd909797950ad2d86f3f85b1867560 (diff) | |
download | serenity-f81e47eea8110b6f0751f99812930478b4ee0763.zip |
Ports: Allow selecting multiple `config_{sub,guess}_path`s
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.
Diffstat (limited to 'Ports/mc')
-rwxr-xr-x | Ports/mc/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/mc/package.sh b/Ports/mc/package.sh index 93c1fe3259..1a75faeb21 100755 --- a/Ports/mc/package.sh +++ b/Ports/mc/package.sh @@ -16,4 +16,4 @@ configopts=( "--with-ncurses-libs=$SERENITY_BUILD_DIR/Root/usr/local/lib" ) use_fresh_config_sub=true -config_sub_path=config/config.sub +config_sub_paths=("config/config.sub") |