diff --git a/ChangeLog b/ChangeLog index 9166cb356e..1e883c88ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2013-08-29 Boris Faure - * Edje: export EINA_VERSION_MAJOR/MINOR when compiling edc files + * Edje: export EFL_VERSION_MAJOR/MINOR when compiling edc files 2013-08-29 Cedric Bail diff --git a/src/bin/edje/edje_cc_parse.c b/src/bin/edje/edje_cc_parse.c index 946149ab51..3f1f658dcd 100644 --- a/src/bin/edje/edje_cc_parse.c +++ b/src/bin/edje/edje_cc_parse.c @@ -858,13 +858,13 @@ compile(void) { if (anotate) snprintf(buf, sizeof(buf), "%s -anotate -a %s %s -I%s %s -o %s" - " -DEINA_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d", + " -DEFL_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d", buf2, watchfile ? watchfile : "/dev/null", file_in, inc, def, tmpn, EINA_VERSION_MAJOR, EINA_VERSION_MINOR); else snprintf(buf, sizeof(buf), "%s -a %s %s -I%s %s -o %s" - " -DEINA_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d", + " -DEFL_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d", buf2, watchfile ? watchfile : "/dev/null", file_in, inc, def, tmpn, EINA_VERSION_MAJOR, EINA_VERSION_MINOR);