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/dist/operation.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build2/dist') diff --git a/build2/dist/operation.cxx b/build2/dist/operation.cxx index cb3a6f3..9bb546c 100644 --- a/build2/dist/operation.cxx +++ b/build2/dist/operation.cxx @@ -156,12 +156,11 @@ namespace build2 ? out_src (d, rs) : dir_path ()); - const char* e (p.extension ()); targets.insert ( move (d), move (out), p.leaf ().base ().string (), - &extension_pool.find (e == nullptr ? "" : e), // Specified. + &extension_pool.find (p.extension ()), // Specified. trace); } }; -- cgit v1.1