From c9c2b5981d861ebeb97bc97ab62e966b87932e84 Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Tue, 25 Nov 2014 23:17:29 +0000 Subject: [PATCH] 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 --- src/bin/edi_consolepanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edi_consolepanel.c b/src/bin/edi_consolepanel.c index 076f697..919fb79 100644 --- a/src/bin/edi_consolepanel.c +++ b/src/bin/edi_consolepanel.c @@ -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)