diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-09-22 11:28:53 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-09-22 11:28:53 +0200 |
commit | d06e8d1d3b0594c74fa444da76c3c7925ed58f70 (patch) | |
tree | a2c6d46e285b8109adc53a7ee2562cd26126a399 /libbuild2/context.cxx | |
parent | 9f72ad00a0654bc965ff527615e02fd35596073c (diff) |
Add ability to skip external modules during bootstrap (--no-external-modules)
Diffstat (limited to 'libbuild2/context.cxx')
-rw-r--r-- | libbuild2/context.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/context.cxx b/libbuild2/context.cxx index d62965c..b78cd27 100644 --- a/libbuild2/context.cxx +++ b/libbuild2/context.cxx @@ -59,6 +59,7 @@ namespace build2 context (scheduler& s, global_mutexes& ms, bool mo, + bool nem, bool dr, bool kg, const strings& cmd_vars, @@ -68,6 +69,7 @@ namespace build2 sched (s), mutexes (ms), match_only (mo), + no_external_modules (nem), dry_run_option (dr), keep_going (kg), phase_mutex (*this), |