From 63c480abe7755c3c957d5c219a5e0ed3e9f881aa Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 17 Dec 2016 16:09:34 +0200 Subject: Add support for specifying individual paths of imported targets The new config.import.* variable format is: config.import..[.] For example: b config.import.build2.b=/opt/build2/bin/b b config.import.build2.b.exe=b-boot --- build2/parser.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build2/parser.cxx') diff --git a/build2/parser.cxx b/build2/parser.cxx index 688df86..54bb670 100644 --- a/build2/parser.cxx +++ b/build2/parser.cxx @@ -3598,12 +3598,11 @@ namespace build2 out = out_src (d, *root_); } - const char* e (p.extension ()); targets.insert ( move (d), move (out), p.leaf ().base ().string (), - &extension_pool.find (e == nullptr ? "" : e), // Always specified. + &extension_pool.find (p.extension ()), // Always specified. trace); } -- cgit v1.1