From ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8 Mon Sep 17 00:00:00 2001 From: Anton Leontiev Date: Sat, 19 Oct 2019 00:26:37 +0300 Subject: docs: Add missing language identifier [skip ci] --- docs/markdown/Reference-manual.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'docs/markdown/Reference-manual.md') diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 862c60afa..d49209630 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) ``` -- cgit v1.2.3