diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-09 07:19:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-09 07:19:30 +0200 |
commit | a4a471f63607d3795756c90b62d00aa419c5d3d7 (patch) | |
tree | 6b617031a5e2459a1fd73bdab22e4b80e04dd64c | |
parent | 6c5fad831329c6949a858a956fea117c4736f08d (diff) |
Remove backwards-compatibility workaround
-rw-r--r-- | bbot/worker/worker.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index 2d87968..d6e8cad 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -1292,10 +1292,7 @@ build (size_t argc, const char* argv[]) { if (t.buildtime) buildtime_tests.push_back (move (t)); - // - // @@ TMP Check for !module_pkg until 0.14.0 is out. - // - else if (target_pkg || (selfhost && !module_pkg)) + else if (target_pkg || selfhost) runtime_tests.push_back (move (t)); } |