From 6417a4e6af2b7732ec0da6af24f1a56f7cdada3f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 31 Mar 2016 09:01:50 +0200 Subject: Set part of variable override implementation --- build2/dist/module.cxx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'build2/dist') diff --git a/build2/dist/module.cxx b/build2/dist/module.cxx index ab8c5a3..4b68bb8 100644 --- a/build2/dist/module.cxx +++ b/build2/dist/module.cxx @@ -39,18 +39,20 @@ namespace build2 { auto& v (var_pool); - v.find ("dist"); + // @@ OVR - v.find ("dist.package"); + v.insert ("dist"); - v.find ("dist.root"); - v.find ("config.dist.root"); + v.insert ("dist.package"); - v.find ("dist.cmd"); - v.find ("config.dist.cmd"); + v.insert ("dist.root"); + v.insert ("config.dist.root"); - v.find ("dist.archives"); - v.find ("config.dist.archives"); + v.insert ("dist.cmd"); + v.insert ("config.dist.cmd"); + + v.insert ("dist.archives"); + v.insert ("config.dist.archives"); } } -- cgit v1.1