diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-22 12:33:47 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-05-27 01:24:08 +0300 |
commit | 0d19d334a8b8e6ebbb1ebdaa5658790a01fdc466 (patch) | |
tree | ad43c248c49d7efc01f1be7555f3d37d8b39adbb | |
parent | f13e65b93a72fca08bebc93afdd34437f2f15c25 (diff) | |
download | meson-0d19d334a8b8e6ebbb1ebdaa5658790a01fdc466.zip meson-0d19d334a8b8e6ebbb1ebdaa5658790a01fdc466.tar.gz meson-0d19d334a8b8e6ebbb1ebdaa5658790a01fdc466.tar.bz2 |
docs: pkg_config_path is a list not a string
You should pass arguments as a list, ie -Dpkg_config_path=/foo,/bar
and meson will join the paths appropriately for you.
-rw-r--r-- | docs/markdown/Builtin-options.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Builtin-options.md b/docs/markdown/Builtin-options.md index db3af64..1d6f9f9 100644 --- a/docs/markdown/Builtin-options.md +++ b/docs/markdown/Builtin-options.md @@ -69,7 +69,7 @@ They have no effect when the host and build machines are the same. | install_umask {preserve, 0000-0777} | 022 | Default umask to apply on permissions of installed files | no | | layout {mirror,flat} | mirror | Build directory layout | no | | optimization {0, g, 1, 2, 3, s} | 0 | Optimization level | no | -| pkg_config_path {OS separated path} | '' | Additional paths for pkg-config to search before builtin paths | yes | +| pkg_config_path | [] | Additional paths for pkg-config to search before builtin paths | yes | | stdsplit | true | Split stdout and stderr in test logs | no | | strip | false | Strip targets on install | no | | unity {on, off, subprojects} | off | Unity build | no | |