diff --git a/legacy/embryo/ChangeLog b/legacy/embryo/ChangeLog index 5263bc1c0b..38b708948e 100644 --- a/legacy/embryo/ChangeLog +++ b/legacy/embryo/ChangeLog @@ -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 diff --git a/legacy/embryo/src/bin/embryo_cc_sc1.c b/legacy/embryo/src/bin/embryo_cc_sc1.c index 22f3f5eaf6..eee28038b8 100644 --- a/legacy/embryo/src/bin/embryo_cc_sc1.c +++ b/legacy/embryo/src/bin/embryo_cc_sc1.c @@ -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);