diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-12 21:20:29 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-12 21:20:29 +0300 |
commit | 7de61aac126e3ecc01cdb1dd1f8f07fbcd887edc (patch) | |
tree | 9462718c4665267bef1803132e065f6cee53a76c | |
parent | 75208604da780e81a4204332cf31e3a7054c80e8 (diff) | |
download | meson-7de61aac126e3ecc01cdb1dd1f8f07fbcd887edc.zip meson-7de61aac126e3ecc01cdb1dd1f8f07fbcd887edc.tar.gz meson-7de61aac126e3ecc01cdb1dd1f8f07fbcd887edc.tar.bz2 |
Clarify that MESONINTROSPECT may have multiple parts.
-rw-r--r-- | docs/markdown/Reference-manual.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 34b473d..1bed44d 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1176,11 +1176,13 @@ the following methods. Python](https://docs.python.org/3/library/os.path.html#os.path.join) special-case absolute paths. - `MESONINTROSPECT` contains the path to the `mesonintrospect` - executable that corresponds to the `meson` executable that was used - to configure the build. (This might be a different path then the - first `mesonintrospect` executable found in `PATH`.) It can be used - to query build configuration. + `MESONINTROSPECT` contains the path to the introspect command that + corresponds to the `meson` executable that was used to configure the + build. (This might be a different path then the first executable + found in `PATH`.) It can be used to query build configuration. Note + that the value may contain many parts, i.e. it may be `python3 + /path/to/meson.py introspect`. The user is responsible for splitting + the string to an array if needed. - `source_root()` returns a string with the absolute path to the source root directory. Note: you should use the `files()` function |