jackdanielz pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=3c229f567acc89840ab99e8f8d9394923137d4de

commit 3c229f567acc89840ab99e8f8d9394923137d4de
Author: Daniel Zaoui <daniel.za...@samsung.com>
Date:   Thu Sep 3 13:20:44 2015 +0300

    Enventor: fix paths inclusion when running enventor
    
    Options have been modified.
---
 src/bin/gui/rmview.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/bin/gui/rmview.c b/src/bin/gui/rmview.c
index 55b4db3..0972310 100644
--- a/src/bin/gui/rmview.c
+++ b/src/bin/gui/rmview.c
@@ -263,10 +263,14 @@ _enventor_clicked(void *data EINA_UNUSED, Eo *obj, const 
Eo_Event_Description *d
             ECORE_EXE_PIPE_ERROR_LINE_BUFFERED | ECORE_EXE_PIPE_ERROR);
 
         eina_strbuf_append_printf(strbuf, "enventor %s", edc_file);
-        eina_strbuf_append_printf(strbuf, " -id %s/images", path);
-        eina_strbuf_append_printf(strbuf, " -sd %s/sounds", path);
-        eina_strbuf_append_printf(strbuf, " -fd %s/fonts", path);
-        eina_strbuf_append_printf(strbuf, " -dd %s/data", path);
+        eina_strbuf_append_printf(strbuf, " -i %s", path);
+        eina_strbuf_append_printf(strbuf, " -s %s", path);
+        eina_strbuf_append_printf(strbuf, " -f %s", path);
+        eina_strbuf_append_printf(strbuf, " -d %s", path);
+        eina_strbuf_append_printf(strbuf, " -i %s/images", path);
+        eina_strbuf_append_printf(strbuf, " -s %s/sounds", path);
+        eina_strbuf_append_printf(strbuf, " -f %s/fonts", path);
+        eina_strbuf_append_printf(strbuf, " -d %s/data", path);
 
         ecore_exe_pipe_run(eina_strbuf_string_get(strbuf), flags, NULL);
 

-- 


Reply via email to