aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek.chauhan@gmail.com>2017-08-10 10:40:02 +0000
committerGitHub <noreply@github.com>2017-08-10 10:40:02 +0000
commitca4778a50078ae4f1399927111fbeae151178090 (patch)
treed6baf7f5ebd1d4c9965db0d01aad8f8888fa30f6
parent0929812eb543fcc834851d69e11732308ec4048d (diff)
downloadmeson-ca4778a50078ae4f1399927111fbeae151178090.zip
meson-ca4778a50078ae4f1399927111fbeae151178090.tar.gz
meson-ca4778a50078ae4f1399927111fbeae151178090.tar.bz2
Update wrap-mode FAQ
-rw-r--r--docs/markdown/FAQ.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/FAQ.md b/docs/markdown/FAQ.md
index cc13756..2d28137 100644
--- a/docs/markdown/FAQ.md
+++ b/docs/markdown/FAQ.md
@@ -154,4 +154,4 @@ First of all there needs to be a `.wrap` file with a download URL in the `subpro
The second requirement is that there needs to be an explicit subproject invocation in your `meson.build` files. Either `subproject('foobar')` or `dependency('foobar', fallback : ['foobar', 'foo_dep'])`. If these declarations either are not in any build file or they are not called (due to e.g. `if/else`) then nothing is downloaded.
-If this is not sufficient for you, starting from release 0.40.0 Meson has a option called `wrap-mode`, which can be used to disable wrap downloads altogether.
+If this is not sufficient for you, starting from release 0.40.0 Meson has a option called `wrap-mode` which can be used to disable wrap downloads altogether with `--wrap-mode=nodownload`. You can also disable dependency fallbacks altogether with `--wrap-mode=nofallback`, which also implies the `nodownload` option.