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/SDL2_mixer | |
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/SDL2_mixer')
-rwxr-xr-x | Ports/SDL2_mixer/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/SDL2_mixer/package.sh b/Ports/SDL2_mixer/package.sh index c600b6ab2d..3ec868f228 100755 --- a/Ports/SDL2_mixer/package.sh +++ b/Ports/SDL2_mixer/package.sh @@ -3,7 +3,7 @@ port=SDL2_mixer version=2.0.4 useconfigure=true use_fresh_config_sub=true -config_sub_path=build-scripts/config.sub +config_sub_paths=("build-scripts/config.sub") files="https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-${version}.tar.gz SDL2_mixer-${version}.tar.gz b4cf5a382c061cd75081cf246c2aa2f9df8db04bdda8dcdc6b6cca55bede2419" auth_type=sha256 depends=("libmodplug" "libmpg123" "libvorbis" "SDL2") |