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/flex | |
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/flex')
-rwxr-xr-x | Ports/flex/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/flex/package.sh b/Ports/flex/package.sh index 2b28ea5dcb..6bfc4b3e9c 100755 --- a/Ports/flex/package.sh +++ b/Ports/flex/package.sh @@ -5,7 +5,7 @@ files="https://github.com/westes/flex/releases/download/v${version}/flex-${versi https://github.com/westes/flex/releases/download/v${version}/flex-${version}.tar.gz.sig flex-${version}.tar.gz.sig" useconfigure=true use_fresh_config_sub=true -config_sub_path=build-aux/config.sub +config_sub_paths=("build-aux/config.sub") configopts=("--disable-bootstrap") depends=("m4" "pcre2") auth_type="sig" |