diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-12 10:16:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-12 10:16:07 +0200 |
commit | 87d871e77649d439b4d62208576239d1341eedef (patch) | |
tree | 7b5ed940155fde57d242d5289ed08fd0c9231526 /libbuild2/config/functions.cxx | |
parent | 4551e5797fe83d4e5e31f3164fcfa3418332ac3d (diff) |
Rename config.{import,export} to config.config.{load,save}
Also rename the $config.export() function to $config.save().
Diffstat (limited to 'libbuild2/config/functions.cxx')
-rw-r--r-- | libbuild2/config/functions.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbuild2/config/functions.cxx b/libbuild2/config/functions.cxx index ec4af65..1fada98 100644 --- a/libbuild2/config/functions.cxx +++ b/libbuild2/config/functions.cxx @@ -22,21 +22,21 @@ namespace build2 function_family f (m, "config"); // Return the configuration file contents as a string, similar to the - // config.export variable functionality. + // config.config.save variable functionality. // // Note that this function can only be used during configure unless the // config module creation was requested for other meta-operations with // config.config.module=true in bootstrap.build. // - f[".export"] = [] (const scope* s) + f[".save"] = [] (const scope* s) { if (s == nullptr) - fail << "config.export() called out of scope" << endf; + fail << "config.save() called out of scope" << endf; s = s->root_scope (); if (s == nullptr) - fail << "config.export() called out of project" << endf; + fail << "config.save() called out of project" << endf; ostringstream os; @@ -44,7 +44,7 @@ namespace build2 // project_set ps; save_config (*s, - os, path_name ("config.export()"), + os, path_name ("config.save()"), false /* inherit */, ps); |