aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/config/utility.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-11-14 10:50:41 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-11-14 10:50:41 +0300
commit62a688e3fd7d1fdb8ce5590ebe9cb99e90cbe5d7 (patch)
tree7c134dfb04815fb41c22d150fe1e481916536888 /libbuild2/config/utility.cxx
parentc03fc4a34ad47f5951633f1e9602b250c53c1927 (diff)
Make use of butl::to_stream(ostream, path, bool)
Diffstat (limited to 'libbuild2/config/utility.cxx')
-rw-r--r--libbuild2/config/utility.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/libbuild2/config/utility.cxx b/libbuild2/config/utility.cxx
index 56c1f79..291bf0c 100644
--- a/libbuild2/config/utility.cxx
+++ b/libbuild2/config/utility.cxx
@@ -195,7 +195,10 @@ namespace build2
ofs << "amalgamation =";
if (!amal->empty ())
- ofs << ' ' << amal->representation ();
+ {
+ ofs << ' ';
+ to_stream (ofs, *amal, true /* representation */);
+ }
ofs << endl;
}