summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/check_false_warning.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-01-10 18:27:11 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2022-01-10 18:27:11 +0200
commit9e1f20728f8d09d4eddbb0e1ff62762f9bddfaae (patch)
tree4669ad081fd7ebeb3f260dfbbf729c4e27d27245 /docs/markdown/snippets/check_false_warning.md
parent09f03a8424a5ab45bbf251e5edd6341c6503f8e1 (diff)
downloadmeson-9e1f20728f8d09d4eddbb0e1ff62762f9bddfaae.tar.gz
Prepare release 0.61.0.
Diffstat (limited to 'docs/markdown/snippets/check_false_warning.md')
-rw-r--r--docs/markdown/snippets/check_false_warning.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/markdown/snippets/check_false_warning.md b/docs/markdown/snippets/check_false_warning.md
deleted file mode 100644
index 50214b70c..000000000
--- a/docs/markdown/snippets/check_false_warning.md
+++ /dev/null
@@ -1,14 +0,0 @@
-## Warning if check kwarg of run_command is missing
-
-The `check` kwarg of `run_command` currently defaults to `false`.
-Because we want to change that, running
-```meson
-run_command('cmd')
-```
-now results in:
-```text
-WARNING: You should add the boolean check kwarg to the run_command call.
- It currently defaults to false,
- but it will default to true in future releases of meson.
- See also: https://github.com/mesonbuild/meson/issues/9300
-```