diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-04-21 13:12:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-04-21 13:12:04 +0200 |
commit | f66848dbd677b1027bade5728e04954c313231af (patch) | |
tree | 65d3141c75355a60e709106e89358b216c9c1b1f /libbuild2/cxx | |
parent | f6aaa5a526913467ccac19162a6409be1dea8012 (diff) |
Make sure main module_functions entry is after submodules
Diffstat (limited to 'libbuild2/cxx')
-rw-r--r-- | libbuild2/cxx/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cxx/init.cxx b/libbuild2/cxx/init.cxx index 732b08b..2929def 100644 --- a/libbuild2/cxx/init.cxx +++ b/libbuild2/cxx/init.cxx @@ -934,8 +934,8 @@ namespace build2 {"cxx.guess", nullptr, guess_init}, {"cxx.config", nullptr, config_init}, - {"cxx", nullptr, init}, {"cxx.objcxx", nullptr, objcxx_init}, + {"cxx", nullptr, init}, {nullptr, nullptr, nullptr} }; |