aboutsummaryrefslogtreecommitdiff
path: root/build2/parser.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-12-17 16:09:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-12-17 16:09:34 +0200
commit63c480abe7755c3c957d5c219a5e0ed3e9f881aa (patch)
treeb6879876f356b040220aae43cf86a4d333e9e0aa /build2/parser.cxx
parent9740d9e777c9d19482052a37ad3a6ab25112d6d6 (diff)
Add support for specifying individual paths of imported targets
The new config.import.* variable format is: config.import.<proj>.<name>[.<type>] For example: b config.import.build2.b=/opt/build2/bin/b b config.import.build2.b.exe=b-boot
Diffstat (limited to 'build2/parser.cxx')
-rw-r--r--build2/parser.cxx3
1 files changed, 1 insertions, 2 deletions
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<buildfile> (
move (d),
move (out),
p.leaf ().base ().string (),
- &extension_pool.find (e == nullptr ? "" : e), // Always specified.
+ &extension_pool.find (p.extension ()), // Always specified.
trace);
}