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