aboutsummaryrefslogtreecommitdiff
path: root/build2/dist
diff options
context:
space:
mode:
Diffstat (limited to 'build2/dist')
-rw-r--r--build2/dist/module.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/build2/dist/module.cxx b/build2/dist/module.cxx
index a205a72..6f40b33 100644
--- a/build2/dist/module.cxx
+++ b/build2/dist/module.cxx
@@ -39,20 +39,20 @@ namespace build2
{
auto& v (var_pool);
- v.find ("dist", bool_type);
+ v.find<bool> ("dist");
- v.find ("dist.package", string_type);
+ v.find<string> ("dist.package");
- v.find ("dist.root", dir_path_type);
- v.find ("config.dist.root", dir_path_type);
+ v.find<dir_path> ("dist.root");
+ v.find<dir_path> ("config.dist.root");
//@@ VAR type
//
- v.find ("dist.cmd", string_type);
- v.find ("config.dist.cmd", string_type);
+ v.find<string> ("dist.cmd");
+ v.find<string> ("config.dist.cmd");
- v.find ("dist.archives", strings_type);
- v.find ("config.dist.archives", strings_type);
+ v.find<strings> ("dist.archives");
+ v.find<strings> ("config.dist.archives");
}
}