Fix the director parsing of build output.

It seems that different quotes are used so let's stop at the space and assume a sing quote of some sort follows
This commit is contained in:
Andy Williams 2014-11-25 23:17:29 +00:00
parent 933b54ebd3
commit c9c2b5981d
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ static void _edi_consolepanel_parse_directory(const char *line)
{
const char *pos;
pos = strstr(line, "Entering directory `");
pos = strstr(line, "Entering directory ");
if (pos)
{
if (_current_dir)