diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-08-26 10:13:21 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jussi.pakkanen@mailbox.org> | 2025-09-15 23:22:00 +0300 |
| commit | 8bba5d0a80ece5c14f5e56468dcf50752fe5d46d (patch) | |
| tree | c4f18cf5dd4c017e11fbb60a2135fc0628294d44 /docs/markdown | |
| parent | f895c2b7eb719aba93bbafba22a68f8352383c9e (diff) | |
| download | meson-8bba5d0a80ece5c14f5e56468dcf50752fe5d46d.tar.gz | |
docs: fix pre-1.8 order for per-subproject options
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/markdown')
| -rw-r--r-- | docs/markdown/Builtin-options.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/markdown/Builtin-options.md b/docs/markdown/Builtin-options.md index 27efbf2ae..6a3ab85f3 100644 --- a/docs/markdown/Builtin-options.md +++ b/docs/markdown/Builtin-options.md @@ -400,12 +400,17 @@ Between *0.54.0* and *1.7.x* only a few options could be defined per subproject: The value was overridden in this order: -- Value from parent project -- Value from subproject's `default_options` -- Value from `subproject()` `default_options` -- Value from machine file -- Value from command line +- `opt=value` from parent project's `default_options` +- `opt=value` from machine file +- `opt=value` from command line +- `opt=value` from subproject's `default_options` +- `subp:opt=value` from parent project's default options +- `opt=value` from `subproject()` `default_options` +- `subp:opt=value` from machine file +- `subp:opt=value` from command line +In other word, the subproject's `default_options` had a *higher* priority +than `opt=value` from machine file or command line. ## Module options |
