diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-06-21 14:23:42 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-06-24 11:18:04 +0300 |
commit | ff07b9a24212fd8cb92504f51b650afd52d7d408 (patch) | |
tree | de4ff04bb9b39e1470f9bb746a827df8bfca64cc /build2/b.cxx | |
parent | e3cf44824b93c250ca8b5ee98b6149437ae2c68a (diff) |
Fail instead of aborting on src and out directories naming scheme mismatch (GH issue #394)
Diffstat (limited to 'build2/b.cxx')
-rw-r--r-- | build2/b.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build2/b.cxx b/build2/b.cxx index 8decadf..9ffb6d1 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -1096,8 +1096,9 @@ main (int argc, char* argv[]) if (!altn) altn = rs.root_extra->altn; - else - assert (*altn == rs.root_extra->altn); + else if (*altn != rs.root_extra->altn) + fail << "naming scheme mismatch for " << out_root << " and " + << rs.src_path (); } // At this stage we should have both roots and out_base figured |