From 42e427e2c70a38ac83f0ab2dda157f5da360b4da Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Mon, 17 Sep 2012 10:09:04 +0000 Subject: [PATCH] edje: don't wait until enough data filed the pipe to notify the other side of stdout that we are working. SVN revision: 76751 --- legacy/edje/src/bin/edje_watch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legacy/edje/src/bin/edje_watch.c b/legacy/edje/src/bin/edje_watch.c index 8570a4143e..78cd2f75cd 100644 --- a/legacy/edje/src/bin/edje_watch.c +++ b/legacy/edje/src/bin/edje_watch.c @@ -69,6 +69,8 @@ rebuild(void *data __UNUSED__) start = ecore_time_get(); fprintf(stdout, "* SYSTEM('%s')\n", edje_cc_command); + fflush(stdout); + ret = system(edje_cc_command); if (WEXITSTATUS(ret) == 0) read_watch_file(watchfile);