aboutsummaryrefslogtreecommitdiff
path: root/build2/bin
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-03-31 09:01:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-03-31 09:01:50 +0200
commit6417a4e6af2b7732ec0da6af24f1a56f7cdada3f (patch)
tree58ffae7ef0cdac55acd6d498dfc66ce0967f4e9a /build2/bin
parent31bd69c56bc29ec1c154a7c0623b6f0ccce78af1 (diff)
Set part of variable override implementation
Diffstat (limited to 'build2/bin')
-rw-r--r--build2/bin/module.cxx35
1 files changed, 19 insertions, 16 deletions
diff --git a/build2/bin/module.cxx b/build2/bin/module.cxx
index 13bf2a8..5b1d8ca 100644
--- a/build2/bin/module.cxx
+++ b/build2/bin/module.cxx
@@ -47,22 +47,25 @@ namespace build2
{
auto& v (var_pool);
- v.find<path> ("config.bin.ar");
- v.find<path> ("config.bin.ranlib");
-
- v.find<string> ("config.bin.lib");
- v.find<strings> ("config.bin.exe.lib");
- v.find<strings> ("config.bin.liba.lib");
- v.find<strings> ("config.bin.libso.lib");
- v.find<dir_paths> ("config.bin.rpath");
-
- v.find<string> ("bin.lib");
- v.find<strings> ("bin.exe.lib");
- v.find<strings> ("bin.liba.lib");
- v.find<strings> ("bin.libso.lib");
- v.find<dir_paths> ("bin.rpath");
-
- v.find<string> ("bin.libprefix");
+ // @@ OVR
+ //
+
+ v.insert<path> ("config.bin.ar");
+ v.insert<path> ("config.bin.ranlib");
+
+ v.insert<string> ("config.bin.lib");
+ v.insert<strings> ("config.bin.exe.lib");
+ v.insert<strings> ("config.bin.liba.lib");
+ v.insert<strings> ("config.bin.libso.lib");
+ v.insert<dir_paths> ("config.bin.rpath");
+
+ v.insert<string> ("bin.lib");
+ v.insert<strings> ("bin.exe.lib");
+ v.insert<strings> ("bin.liba.lib");
+ v.insert<strings> ("bin.libso.lib");
+ v.insert<dir_paths> ("bin.rpath");
+
+ v.insert<string> ("bin.libprefix");
}
// Register target types.