jaehyun pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=b3a5acf7615d8ac90bab94e750735de75f7ae9a3

commit b3a5acf7615d8ac90bab94e750735de75f7ae9a3
Author: Jaehyun Cho <[email protected]>
Date:   Wed Aug 24 21:24:40 2016 +0900

    Revert "build: Support relative resource paths in sub edc file."
    
    This reverts commit c17f2f3e375bf35f0e28f112587fa1a94cb7cea3.
---
 src/lib/build.c | 20 ++------------------
 1 file changed, 2 insertions(+), 18 deletions(-)

diff --git a/src/lib/build.c b/src/lib/build.c
index 2117895..105ffce 100644
--- a/src/lib/build.c
+++ b/src/lib/build.c
@@ -98,20 +98,8 @@ build_cmd_set(build_data *bd)
         goto err;
      }
 
-   /* Move to main edc file's directory to set it as the current working
-      directory to support relative resource paths in sub edc files.
-      (e.g. images.image: "./images/icon.png" COMP; in sub edc files) */
-   char *edc_dir = ecore_file_dir_get(bd->edc_path);
-   if (!edc_dir) goto err;
-
-   /* Move back to current working directory to restore the current working
-      directory after edje_cc compile. */
-   char *cur_dir = ecore_file_realpath("./");
-   if (!cur_dir) goto err;
-
    eina_strbuf_append_printf(strbuf,
-      "cd %s && edje_cc -fastcomp %s %s -id %s/images -sd %s/sounds -fd 
%s/fonts -dd %s/data %s %s %s %s -beta && cd %s",
-      edc_dir,
+      "edje_cc -fastcomp %s %s -id %s/images -sd %s/sounds -fd %s/fonts -dd 
%s/data %s %s %s %s -beta",
       bd->edc_path,
       (char *) eina_list_data_get(bd->pathes_list[ENVENTOR_PATH_TYPE_EDJ]),
       elm_app_data_dir_get(),
@@ -121,15 +109,11 @@ build_cmd_set(build_data *bd)
       eina_strbuf_string_get(strbuf_img),
       eina_strbuf_string_get(strbuf_snd),
       eina_strbuf_string_get(strbuf_fnt),
-      eina_strbuf_string_get(strbuf_dat),
-      cur_dir);
+      eina_strbuf_string_get(strbuf_dat));
    bd->build_cmd = eina_strbuf_string_steal(strbuf);
    bd->build_cmd_changed = EINA_FALSE;
 
 err:
-   if (edc_dir) free(edc_dir);
-   if (cur_dir) free(cur_dir);
-
    eina_strbuf_free(strbuf);
    eina_strbuf_free(strbuf_img);
    eina_strbuf_free(strbuf_snd);

-- 


Reply via email to