From 3bf71b3dec27b43ff02525ab1ddd95d7b6daf995 Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Tue, 16 Jan 2024 14:34:55 -0500 Subject: [PATCH] fix: path delimiter is `,` not `:` --- doc/setup.md | 2 +- meson/resolve-dependencies.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/setup.md b/doc/setup.md index 777786df..6a718ace 100644 --- a/doc/setup.md +++ b/doc/setup.md @@ -106,7 +106,7 @@ meson install -C build-iguana > [!TIP] > If you have trouble and want to try a clean build, wipe your build directory by running: > ```bash -> meson setup --wipe build-iguana +> meson setup --wipe build-iguana --native-file my-iguana.ini > ``` > Then try to rebuild diff --git a/meson/resolve-dependencies.py b/meson/resolve-dependencies.py index 3d2de1f3..04e643b6 100755 --- a/meson/resolve-dependencies.py +++ b/meson/resolve-dependencies.py @@ -81,9 +81,9 @@ def ini_string_arr(arr): # CLI options cli_opts = [] if(len(pkg_config_path) > 0): - cli_opts.append(f'-Dpkg_config_path=\'{":".join(pkg_config_path)}\'') + cli_opts.append(f'-Dpkg_config_path=\'{",".join(pkg_config_path)}\'') if(len(cmake_prefix_path) > 0): - cli_opts.append(f'-Dcmake_prefix_path=\'{":".join(cmake_prefix_path)}\'') + cli_opts.append(f'-Dcmake_prefix_path=\'{",".join(cmake_prefix_path)}\'') ################################################## # print