edje: use the right variable.

Thanks michelle_lg.
This commit is contained in:
Cedric BAIL 2014-10-31 10:45:28 +01:00
parent 339ae93f82
commit 7b2aecff79
1 changed files with 3 additions and 3 deletions

View File

@ -976,13 +976,13 @@ compile(void)
snprintf(buf, sizeof(buf), "%s -anotate -a %s %s -I%s %s -o %s"
" -DEFL_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d",
buf2, watchfile ? watchfile : "/dev/null", file_in,
inc, def, tmpn,
inc, def, clean_file,
EINA_VERSION_MAJOR, EINA_VERSION_MINOR);
else
snprintf(buf, sizeof(buf), "%s -a %s %s -I%s %s -o %s"
" -DEFL_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d",
buf2, watchfile ? watchfile : "/dev/null", file_in,
inc, def, tmpn,
inc, def, clean_file,
EINA_VERSION_MAJOR, EINA_VERSION_MINOR);
ret = system(buf);
}
@ -992,7 +992,7 @@ compile(void)
exit(-1);
}
if (ret == EXIT_SUCCESS)
file_in = (char *)tmpn;
file_in = (char *)clean_file;
else
{
ERR("Exit code of epp not clean: %i", ret);