aboutsummaryrefslogtreecommitdiff
path: root/build2/context.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/context.cxx')
-rw-r--r--build2/context.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/build2/context.cxx b/build2/context.cxx
index 95230a6..83b3cff 100644
--- a/build2/context.cxx
+++ b/build2/context.cxx
@@ -678,10 +678,13 @@ namespace build2
// module.cxx:load_module().
//
- vp.insert_pattern<bool> (
- "**.loaded", false, variable_visibility::project);
- vp.insert_pattern<bool> (
- "**.configured", false, variable_visibility::project);
+ {
+ auto v_p (variable_visibility::project);
+
+ vp.insert_pattern<bool> ("**.booted", false, v_p);
+ vp.insert_pattern<bool> ("**.loaded", false, v_p);
+ vp.insert_pattern<bool> ("**.configured", false, v_p);
+ }
{
auto v_p (variable_visibility::project);