diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-06-09 16:25:20 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-06-14 17:51:00 +0300 |
commit | da701337ca32a54682a0daddcd2ab85a2f886a18 (patch) | |
tree | db1c7cbbc6b64c4daf0d21c711ebb7583b98a765 /mod/mod-build-log.cxx | |
parent | 6afd16cfb93ca1cf943b7f304bf4b1ab781179b6 (diff) |
Get rid of package configuration unbuilt state
Diffstat (limited to 'mod/mod-build-log.cxx')
-rw-r--r-- | mod/mod-build-log.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mod/mod-build-log.cxx b/mod/mod-build-log.cxx index 3daa1e3..281eec6 100644 --- a/mod/mod-build-log.cxx +++ b/mod/mod-build-log.cxx @@ -206,14 +206,12 @@ handle (request& rq, response& rs) // ostream& os (rs.content (200, "text/plain;charset=utf-8", false)); - assert (b->machine && b->machine_summary); - os << "package: " << b->package_name << endl << "version: " << b->package_version << endl << "toolchain: " << b->toolchain_name << '-' << b->toolchain_version << endl << "config: " << b->configuration << endl - << "machine: " << *b->machine << " (" << *b->machine_summary << ")" + << "machine: " << b->machine << " (" << b->machine_summary << ")" << endl << "target: " << (b->target ? b->target->string () : "<default>") << endl |