summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/meson_configure_options_changes.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/meson_configure_options_changes.md')
-rw-r--r--docs/markdown/snippets/meson_configure_options_changes.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/markdown/snippets/meson_configure_options_changes.md b/docs/markdown/snippets/meson_configure_options_changes.md
new file mode 100644
index 000000000..c86792ceb
--- /dev/null
+++ b/docs/markdown/snippets/meson_configure_options_changes.md
@@ -0,0 +1,12 @@
+## Meson configure handles changes to options in more cases
+
+Meson configure now correctly handles updates to the options file without a full
+reconfigure. This allows making a change to the `meson.options` or
+`meson_options.txt` file without a reconfigure.
+
+For example, this now works:
+```sh
+meson setup builddir
+git pull
+meson configure builddir -Doption-added-by-pull=value
+```