Edje: Use ecore_file_symlink rather than symlink

SVN revision: 63256
This commit is contained in:
Youness Alaoui 2011-09-07 06:58:48 +00:00
parent bad6a1bc33
commit df91f38ffb
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ output(void)
if (file_out)
{
snprintf(out, sizeof(out), "%s/%s", outdir, file_out);
if (symlink(sf->name, out) != 0)
if (ecore_file_symlink(sf->name, out) != EINA_TRUE)
{
ERR("symlink %s -> %s failed\n", sf->name, out);
}