diff options
Diffstat (limited to 'build2/operation.cxx')
-rw-r--r-- | build2/operation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/operation.cxx b/build2/operation.cxx index 229ea4e..aa92756 100644 --- a/build2/operation.cxx +++ b/build2/operation.cxx @@ -81,7 +81,7 @@ namespace build2 // Create the base scope. Note that its existence doesn't mean it was // already setup as a base scope; it can be the same as root. // - auto i (scopes.rw (root).insert (out_base, false)); + auto i (scopes.rw (root).insert (out_base)); scope& base (setup_base (i, out_base, src_base)); // Load the buildfile unless it is implied. @@ -456,7 +456,7 @@ namespace build2 if (rs.out_path () != out_base || rs.src_path () != src_base) fail (l) << "meta-operation info target must be project root directory"; - setup_base (scopes.rw (rs).insert (out_base, false), out_base, src_base); + setup_base (scopes.rw (rs).insert (out_base), out_base, src_base); } void |