From 4551e5797fe83d4e5e31f3164fcfa3418332ac3d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 12 Nov 2019 09:51:45 +0200 Subject: Rename config.module to config.config.module The old name was an accidental land-grab. --- build/bootstrap.build | 2 +- libbuild2/config/functions.cxx | 4 ++-- libbuild2/config/init.cxx | 20 ++++++++++---------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/build/bootstrap.build b/build/bootstrap.build index e6c0eb4..921ef84 100644 --- a/build/bootstrap.build +++ b/build/bootstrap.build @@ -7,7 +7,7 @@ project = build2 # Force config module creation for meta-opeations other than configure so that # we can call $config.export() during perform update. # -config.module = true +config.config.module = true using version using config diff --git a/libbuild2/config/functions.cxx b/libbuild2/config/functions.cxx index b6ccb74..ec4af65 100644 --- a/libbuild2/config/functions.cxx +++ b/libbuild2/config/functions.cxx @@ -25,8 +25,8 @@ namespace build2 // config.export variable functionality. // // Note that this function can only be used during configure unless the - // config module creation was forced for other meta-operations with - // config.module=true in bootstrap.build. + // config module creation was requested for other meta-operations with + // config.config.module=true in bootstrap.build. // f[".export"] = [] (const scope* s) { diff --git a/libbuild2/config/init.cxx b/libbuild2/config/init.cxx index e1c1dd0..1775a52 100644 --- a/libbuild2/config/init.cxx +++ b/libbuild2/config/init.cxx @@ -38,6 +38,13 @@ namespace build2 l5 ([&]{trace << "for " << rs;}); + // Note that the config.* variables belong to the module . + // So the only "special" variables we can allocate in config.* are + // config.config.*, names that have been "gifted" to us by other modules + // (like config.version below) as well as names that we have reserved to + // not be valid module names (`build`). We also currently treat `import` + // as special. + // auto& vp (rs.ctx.var_pool.rw (rs)); // While config.import could theoretically be specified in a buildfile, @@ -51,13 +58,13 @@ namespace build2 vp.insert ("config.import", true /* ovr */); // Only create the module if we are configuring or creating or if it was - // forced with config.module (useful if we need to call $config.export() - // during other meta-operations). + // requested with config.config.module (useful if we need to call + // $config.export() during other meta-operations). // // Detecting the former (configuring/creating) is a bit tricky since the // build2 core may not yet know if this is the case. But we know. // - auto& c_m (vp.insert ("config.module", false /*ovr*/)); + auto& c_m (vp.insert ("config.config.module", false /*ovr*/)); const string& mname (ctx.current_mname); const string& oname (ctx.current_oname); @@ -116,14 +123,7 @@ namespace build2 assert (config_hints.empty ()); // We don't known any hints. - // Note that the config.* variables belong to the module . - // So the only "special" variables we can allocate in config.* are - // config.config.*, names that have been "gifted" to us by other modules - // (like config.version) as well as names that we have reserved to not - // be valid module names (build, import, export). - // auto& vp (rs.ctx.var_pool.rw (rs)); - auto& c_v (vp.insert ("config.version", false /*ovr*/)); // Load config.build if one exists followed by extra files specified in -- cgit v1.1