diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-01-07 19:32:34 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-01-07 22:12:25 +0200 |
commit | 8d576eba9190f311e845f08ce822972b34c4e973 (patch) | |
tree | d7add41a3b2d463f89be86577f3ba8503663f521 /docs/markdown/snippets/find_program.md | |
parent | a1d2444e4aac7df1a7f5d36246f64ea0564d38a4 (diff) | |
download | meson-8d576eba9190f311e845f08ce822972b34c4e973.zip meson-8d576eba9190f311e845f08ce822972b34c4e973.tar.gz meson-8d576eba9190f311e845f08ce822972b34c4e973.tar.bz2 |
Prepare new release.0.53.0
Diffstat (limited to 'docs/markdown/snippets/find_program.md')
-rw-r--r-- | docs/markdown/snippets/find_program.md | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/markdown/snippets/find_program.md b/docs/markdown/snippets/find_program.md deleted file mode 100644 index 2bef824..0000000 --- a/docs/markdown/snippets/find_program.md +++ /dev/null @@ -1,9 +0,0 @@ -## Search directories for `find_program()` - -It is now possible to give a list of absolute paths where `find_program()` should -also search, using the `dirs` keyword argument. - -For example on Linux `/sbin` and `/usr/sbin` are not always in the `$PATH`: -```meson -prog = find_program('mytool', dirs : ['/usr/sbin', '/sbin']) -``` |