diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-08 11:32:06 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-08 11:41:29 +0300 |
commit | 65a8152563dde459c7788133117cd3137960ae53 (patch) | |
tree | c71728dae6dc48dbf22782a10e09d7a1b013c102 | |
parent | 730277b4ab35ecb7179943fb54eef3934480db8c (diff) |
Fix handling --options-file option in default options files
-rw-r--r-- | bdep/bdep.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bdep/bdep.cxx b/bdep/bdep.cxx index 14a36ba..c1a7249 100644 --- a/bdep/bdep.cxx +++ b/bdep/bdep.cxx @@ -249,7 +249,8 @@ init (const common_options& co, else trace << "loading " << (r ? "remote " : "local ") << f; } - }), + }, + "--options-file"), o); } catch (const pair<path, system_error>& e) |