aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndrei Alexeyev <0x416b617269@gmail.com>2018-05-22 04:41:28 +0300
committerAndrei Alexeyev <0x416b617269@gmail.com>2018-05-22 04:45:40 +0300
commit2e2d14c9d7f2d6747eeaced85aba781390d24133 (patch)
tree06a576d7657e158beaca431125965be2881e20da /docs
parentd72f9a3e0fd0434029b0c933886cfdecb5ee465e (diff)
downloadmeson-2e2d14c9d7f2d6747eeaced85aba781390d24133.zip
meson-2e2d14c9d7f2d6747eeaced85aba781390d24133.tar.gz
meson-2e2d14c9d7f2d6747eeaced85aba781390d24133.tar.bz2
Update documentation for run_command [skip ci]
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Reference-manual.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index 2498b98..1e0e4c9 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -1016,7 +1016,7 @@ Project supports the following keyword arguments.
### run_command()
``` meson
- runresult run_command(command, list_of_args)
+ runresult run_command(command, list_of_args, ...)
```
Runs the command specified in positional arguments.
@@ -1031,6 +1031,13 @@ Meson will set three environment variables `MESON_SOURCE_ROOT`,
directory, build directory and subdirectory the target was defined in,
respectively.
+This function has one keyword argument.
+
+ - `check` takes a boolean. If `true`, the exit status code of the command will
+ be checked, and the configuration will fail if it is non-zero. The default is
+ `false`.
+ Since 0.47.0
+
See also [External commands](External-commands.md).
### run_target