aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-09-18 15:57:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-09-18 15:57:52 +0200
commit8c30c59de2d304a416dfd4fcb821e0b227e5db96 (patch)
treef249eabbe955b38c5516e68f7577bbb4b5dbc705 /libbuild2/cxx
parent04bfd3bf7a71197bdf5f697e323c70e98b857571 (diff)
Rename importable_headers variable to translatable_headers
This name aligns better with the post-Cologne importable/translatable semantics.
Diffstat (limited to 'libbuild2/cxx')
-rw-r--r--libbuild2/cxx/init.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/libbuild2/cxx/init.cxx b/libbuild2/cxx/init.cxx
index 5619397..6a449c7 100644
--- a/libbuild2/cxx/init.cxx
+++ b/libbuild2/cxx/init.cxx
@@ -400,16 +400,16 @@ namespace build2
v.insert<strings> ("config.cxx.aoptions", true),
v.insert<strings> ("config.cxx.libs", true),
- // List of importable headers. Inclusion of such headers is translated
- // to the corresponding header unit imports.
+ // List of translatable headers. Inclusions of such headers are
+ // translated to the corresponding header unit imports.
//
// A header can be specified either as an absolute and normalized path
// or as a <>-style include name. The latter kind is automatically
- // translated to the absolute form based on the compiler's system
- // header search paths (as opposed to -I). Note also that all entries
- // must be specified before loading the cxx module.
+ // translated to the absolute form based on the compiler's system (as
+ // opposed to -I) header search paths. Note also that all entries must
+ // be specified before loading the cxx module.
//
- &v.insert<strings> ("config.cxx.importable_headers", true),
+ &v.insert<strings> ("config.cxx.translatable_headers", true),
v.insert<process_path> ("cxx.path"),
v.insert<dir_paths> ("cxx.sys_lib_dirs"),
@@ -423,7 +423,7 @@ namespace build2
v.insert<strings> ("cxx.aoptions"),
v.insert<strings> ("cxx.libs"),
- &v.insert<strings> ("cxx.importable_headers"),
+ &v.insert<strings> ("cxx.translatable_headers"),
v["cc.poptions"],
v["cc.coptions"],