diff options
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 |