SVN revision: 57272
This commit is contained in:
Mike Blumenkrantz 2011-02-23 19:07:13 +00:00
parent b890c5397b
commit 5677e35855
1 changed files with 2 additions and 2 deletions

View File

@ -693,9 +693,9 @@ compile(void)
* Run the input through the C pre-processor.
*/
ret = -1;
if (ecore_file_exists("@EPPDIR@/epp"))
if (ecore_file_exists(EPPDIR"/epp"))
{
snprintf(buf, sizeof(buf), "@EPPDIR@/epp -I%s %s -P -o %s - < %s",
snprintf(buf, sizeof(buf), EPPDIR"/epp -I%s %s -P -o %s - < %s",
inc, def, tmpn, file_in);
ret = system(buf);
}