Skip to content

Commit

Permalink
fix: path delimiter is , not :
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Jan 16, 2024
1 parent 61a856f commit 3bf71b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions meson/resolve-dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3bf71b3

Please sign in to comment.