aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/module.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-03-10 09:33:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-03-10 09:33:27 +0200
commit3e78b3eea3a95e8ef5bee59a9c85ddfa73c03ab7 (patch)
treee1513f918f55a8f68e55a2ddebe5c21f1ac42502 /build2/cxx/module.cxx
parent39a0e4230d9f79447755e765446f7fe6b897da99 (diff)
Rename cxx.host.* to cxx.target.*
Diffstat (limited to 'build2/cxx/module.cxx')
-rw-r--r--build2/cxx/module.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/build2/cxx/module.cxx b/build2/cxx/module.cxx
index 53c1bc7..939cdfe 100644
--- a/build2/cxx/module.cxx
+++ b/build2/cxx/module.cxx
@@ -220,13 +220,13 @@ namespace build2
l5 ([&]{trace << "canonical target '" << canon << "'";});
- // Enter as cxx.host.{cpu,vendor,system,version}.
+ // Enter as cxx.target.{cpu,vendor,system,version}.
//
- r.assign ("cxx.host", string_type) = canon;
- r.assign ("cxx.host.cpu", string_type) = t.cpu;
- r.assign ("cxx.host.vendor", string_type) = t.vendor;
- r.assign ("cxx.host.system", string_type) = t.system;
- r.assign ("cxx.host.version", string_type) = t.version;
+ r.assign ("cxx.target", string_type) = canon;
+ r.assign ("cxx.target.cpu", string_type) = t.cpu;
+ r.assign ("cxx.target.vendor", string_type) = t.vendor;
+ r.assign ("cxx.target.system", string_type) = t.system;
+ r.assign ("cxx.target.version", string_type) = t.version;
}
catch (const invalid_argument& e)
{