Embryo : embryo_cc_sc1.c : delete temporary files on Windows

SVN revision: 61420
This commit is contained in:
Vincent Torri 2011-07-16 07:38:33 +00:00
parent 603dc537b0
commit 42cf875234
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,11 @@
2011-01-29 Carsten Haitzler (The Rasterman)
1.0.0 release
2011-05-12 Carsten Haitzler (The Rasterman)
* Make embryo_cc use eina and eina_prefix to determine include location
2011-07-16 Vincent Torri
* delete temporary files on Windows

View File

@ -304,8 +304,6 @@ sc_compile(int argc, char *argv[])
if (fd_out < 0)
error(101, outfname);
unlink (outfname); /* kill this file as soon as it's (f)close'd */
setconfig(argv[0]); /* the path to the include files */
lcl_ctrlchar = sc_ctrlchar;
lcl_packstr = sc_packstr;
@ -409,6 +407,7 @@ sc_compile(int argc, char *argv[])
} /* if */
if (outf)
sc_closeasm(outf);
unlink (outfname);
if (binf)
sc_closebin(binf, errnum != 0);