ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/tools/edi.git/commit/?id=c9c2b5981d861ebeb97bc97ab62e966b87932e84

commit c9c2b5981d861ebeb97bc97ab62e966b87932e84
Author: Andy Williams <a...@andywilliams.me>
Date:   Tue Nov 25 23:17:29 2014 +0000

    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)

-- 


Reply via email to