diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-06-21 14:09:53 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-06-26 23:05:01 +0300 |
commit | 8b12a71f22e0f0770b31bc4c94cdab519e014dd4 (patch) | |
tree | ca58eccf94da1b8938226ce975144ede714cf7c1 /docs/markdown | |
parent | ce7cdadd371b03401f2e81d299f0448955a950ef (diff) | |
download | meson-8b12a71f22e0f0770b31bc4c94cdab519e014dd4.zip meson-8b12a71f22e0f0770b31bc4c94cdab519e014dd4.tar.gz meson-8b12a71f22e0f0770b31bc4c94cdab519e014dd4.tar.bz2 |
Refine documentation for build_always [skip ci]
We mention this is equivalent to setting both build_by_default and
build_always_stale in the release note, and in the warning emitted when it's
used, but not in the reference manual.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-manual.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 87fb581..dd66e6e 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -233,9 +233,10 @@ following. have this target be built by default, that is, when invoking plain `ninja`; the default value is false - `build_always` (deprecated) if `true` this target is always considered out of - date and is rebuilt every time, useful for things such as build - timestamps or revision control tags. + date and is rebuilt every time. Equivalent to setting both + `build_always_stale` and `build_by_default` to true. - `build_always_stale` if `true` the target is always considered out of date. + Useful for things such as build timestamps or revision control tags. The associated command is run even if the outputs are up to date. - `capture`, there are some compilers that can't be told to write their output to a file but instead write it to standard output. When |