diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-11-29 14:21:07 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 12:19:29 +0100 |
commit | b91c5aad854bff3a13c27aa1a6ade85ded216207 (patch) | |
tree | 134cb258adb2103751e47c0c50ff4c850f3c33d2 /mesonbuild/mconf.py | |
parent | c4eb5c79fe89ca49dd9d9f5bd72be99d919dd2a0 (diff) | |
download | meson-b91c5aad854bff3a13c27aa1a6ade85ded216207.zip meson-b91c5aad854bff3a13c27aa1a6ade85ded216207.tar.gz meson-b91c5aad854bff3a13c27aa1a6ade85ded216207.tar.bz2 |
Update intro dump on meson configure
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r-- | mesonbuild/mconf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 28589da..eca32bf 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -14,6 +14,7 @@ import os from . import (coredata, mesonlib, build) +from . import mintro def add_arguments(parser): coredata.register_builtin_arguments(parser) @@ -162,6 +163,7 @@ def run(options): c.print_conf() if save: c.save() + mintro.update_build_options(c.coredata, builddir) except ConfException as e: print('Meson configurator encountered an error:') raise e |