diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-03-26 16:56:35 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-04-01 11:37:33 +0200 |
commit | 86a1c60681e51aebc28a8c38094fefc75c8d591f (patch) | |
tree | 23d201b5537bef79b1424306872e91611d36866a /src | |
parent | 92acdf01db89751106139b8c4b5816888a5c4e3e (diff) | |
download | justbuild-86a1c60681e51aebc28a8c38094fefc75c8d591f.tar.gz |
built-in rule "tree": fix supported fields
The built-in rule "tree" does not support the field "data". Hence
remove it from the list of white-listed fields so that an appropriate
warning is issued if it occurs for that rule.
(cherry-picked from 1324f45fa7b1938b39854f7b38d981c238da2fbc)
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/build_engine/target_map/built_in_rules.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/buildtool/build_engine/target_map/built_in_rules.cpp b/src/buildtool/build_engine/target_map/built_in_rules.cpp index 534d2fea..ec25a785 100644 --- a/src/buildtool/build_engine/target_map/built_in_rules.cpp +++ b/src/buildtool/build_engine/target_map/built_in_rules.cpp @@ -81,7 +81,6 @@ auto const kBlobGenRuleFields = "tainted", "type"}; auto const kTreeRuleFields = std::unordered_set<std::string>{"arguments_config", - "data", "deps", "name", "tainted", |