diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-10-07 08:17:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-10-08 15:05:21 +0200 |
commit | 8384a087afc7e29e900a3ce96d55ab2f5c2a74c2 (patch) | |
tree | deff3d99e33bfc7abecb3ef0422ccb2dd6c3d43b /libbuild2/config/operation.cxx | |
parent | 734bf117f0eb596fc40579810613a6e13c43d3c4 (diff) |
Expose custom save function in config module
It can generally be useful, for example, to complete relative paths before
saving them to config.build (if abs_dir_path does not fit).
Diffstat (limited to 'libbuild2/config/operation.cxx')
-rw-r--r-- | libbuild2/config/operation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/config/operation.cxx b/libbuild2/config/operation.cxx index b1716cf..6e7ef18 100644 --- a/libbuild2/config/operation.cxx +++ b/libbuild2/config/operation.cxx @@ -558,7 +558,7 @@ namespace build2 storage.clear (); pair<names_view, const char*> p ( sv.save != nullptr - ? sv.save (v, base, storage) + ? sv.save (rs, v, base, storage) : make_pair (reverse (v, storage, true /* reduce */), "=")); // Might becomes empty after a custom save function had at it. |