diff options
Diffstat (limited to 'build/b.cxx')
-rw-r--r-- | build/b.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/b.cxx b/build/b.cxx index 3fe9d20..2e36003 100644 --- a/build/b.cxx +++ b/build/b.cxx @@ -468,7 +468,7 @@ main (int argc, char* argv[]) // See if the bootstrap process set/changed src_root. // { - auto v (rs.variables["src_root"]); + auto v (rs.assign ("src_root")); if (v) { @@ -528,7 +528,7 @@ main (int argc, char* argv[]) // Why don't we support it? Because things are already complex // enough here. // - if (auto v = rs.ro_variables ()["subprojects"]) + if (auto v = rs.vars["subprojects"]) { for (const name& n: v.as<const list_value&> ()) { |