summaryrefslogtreecommitdiff
path: root/src/buildtool/main/analyse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/main/analyse.cpp')
-rw-r--r--src/buildtool/main/analyse.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/buildtool/main/analyse.cpp b/src/buildtool/main/analyse.cpp
index 6f63e7ab..ab2313e7 100644
--- a/src/buildtool/main/analyse.cpp
+++ b/src/buildtool/main/analyse.cpp
@@ -116,8 +116,15 @@ namespace Target = BuildMaps::Target;
Base::CreateRuleMap(&rule_file_map, &expr_map, repo_config, jobs);
auto source_targets =
Base::CreateSourceTargetMap(&directory_entries, repo_config, jobs);
- auto absent_target_map = Target::CreateAbsentTargetMap(
- result_map, repo_config, stats, &exports_progress, jobs);
+ auto absent_target_variables_map =
+ Target::CreateAbsentTargetVariablesMap(jobs);
+ auto absent_target_map =
+ Target::CreateAbsentTargetMap(result_map,
+ &absent_target_variables_map,
+ repo_config,
+ stats,
+ &exports_progress,
+ jobs);
auto target_map = Target::CreateTargetMap(&source_targets,
&targets_file_map,
&rule_map,