From 84c383dc1a78df13ade3948a87ab8925e2e2258e Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Thu, 29 Aug 2013 15:28:32 +0200 Subject: [PATCH] export EFL_VERSION_MAJOR/MINOR --- ChangeLog | 2 +- src/bin/edje/edje_cc_parse.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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);