diff options
author | Anton Leontiev <scileont@gmail.com> | 2019-10-19 00:26:37 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-10-19 19:14:10 +0300 |
commit | ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8 (patch) | |
tree | deb727d2ec2e9da1cdf7451d0e9fb4da70f18b4d /docs/markdown/Reference-manual.md | |
parent | 998a1f5fa3f7e86ce3902544bc61f54c9709926b (diff) | |
download | meson-ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8.zip meson-ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8.tar.gz meson-ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8.tar.bz2 |
docs: Add missing language identifier [skip ci]
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 862c60a..d492096 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -709,14 +709,16 @@ set). Hence, you *must not* manually add the interpreter while using this script as part of a list of commands. If you need to check for a program in a non-standard location, you can -just pass an absolute path to `find_program`, e.g. ``` setcap = -find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : -false) ``` +just pass an absolute path to `find_program`, e.g. + +```meson +setcap = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false) +``` It is also possible to pass an array to `find_program` in case you need to construct the set of paths to search on the fly: -``` +```meson setcap = find_program(['setcap', '/usr/sbin/setcap', '/sbin/setcap'], required : false) ``` |