diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-07-10 12:12:57 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-07-10 12:12:57 +0200 |
commit | fc4bea587f91e503ab26d15b76ab1e3bf88672b1 (patch) | |
tree | 88ffd0847eb267101c975b2def04b2469abbf2f9 | |
parent | e52f530cb00da2c339badd2c0ad9fc99b88a4400 (diff) |
Fix bug
-rw-r--r-- | build2/b.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/b.cxx b/build2/b.cxx index 347b94a..61cb931 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -1051,7 +1051,7 @@ main (int argc, char* argv[]) // If this is a simple project, then implicitly load the test and // install modules. // - if (rs.root_extra->project == nullptr) + if (*rs.root_extra->project == nullptr) { boot_module (rs, "test", location ()); boot_module (rs, "install", location ()); |