diff options
Diffstat (limited to 'libbuild2/config/utility.cxx')
-rw-r--r-- | libbuild2/config/utility.cxx | 5 |
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; } |