diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-06-08 13:31:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-06-08 13:48:37 +0200 |
commit | 1c30f9e9c4fca846f05e881638920a9beb082fd1 (patch) | |
tree | 21c14ea34baca0a25e7fb245e92d2cd19b4ac7e7 /libbuild2/operation.cxx | |
parent | 957e150b49fce148c51a13bca0aa9f754ac2c4cb (diff) |
Add support for buildfile importation
Diffstat (limited to 'libbuild2/operation.cxx')
-rw-r--r-- | libbuild2/operation.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbuild2/operation.cxx b/libbuild2/operation.cxx index e9b9211..bafc263 100644 --- a/libbuild2/operation.cxx +++ b/libbuild2/operation.cxx @@ -85,7 +85,8 @@ namespace build2 { // Load project's root.build. // - load_root (root); + if (!root.root_extra->loaded) + load_root (root); // 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. |