build: Fix to show multi-line error message on console.

Summary: Fix to show multi-line error message on console.

Reviewers: Hermet

Differential Revision: https://phab.enlightenment.org/D1556
This commit is contained in:
Jaehyun Cho 2014-10-22 14:17:41 +09:00 committed by ChunEon Park
parent c2bec2c14d
commit 1bfb773a72
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ exe_event_error_cb(void *data, int type EINA_UNUSED, void *event_info)
for (el = ev->lines; el && el->line; el++)
{
eina_strbuf_append(bd->strbuf, el->line);
eina_strbuf_append_char(bd->strbuf, '\n');
eina_strbuf_append(bd->strbuf, "<br/>");
}
bd->noti_cb(bd->noti_data, eina_strbuf_string_get(bd->strbuf));