diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-16 13:28:08 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-16 13:57:11 +0200 |
commit | 8d05d92557697d46fbc92c246ac9226fd49cabec (patch) | |
tree | 280b5634fce46098da58eb11bbcbe9d300698682 /src/other_tools | |
parent | e086c445bf947f1b6ce698e90e59559e86c404a0 (diff) | |
download | justbuild-8d05d92557697d46fbc92c246ac9226fd49cabec.tar.gz |
rc parsing: fix graph/plain graph confusion
Diffstat (limited to 'src/other_tools')
-rw-r--r-- | src/other_tools/just_mr/rc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/rc.cpp b/src/other_tools/just_mr/rc.cpp index 41b7e77e..f04738b4 100644 --- a/src/other_tools/just_mr/rc.cpp +++ b/src/other_tools/just_mr/rc.cpp @@ -617,7 +617,8 @@ namespace { auto graph_file_plain = invocation_log->Get("--dump-plain-graph", Expression::none_t{}); if (graph_file_plain->IsString()) { - clargs->invocation_log.graph_file = graph_file_plain->String(); + clargs->invocation_log.graph_file_plain = + graph_file_plain->String(); } auto dump_artifacts_to_build = invocation_log->Get( "--dump-artifacts-to-build", Expression::none_t{}); |