* mkimport: cd away from temp directory or Windows will have problems removing

the directory.
This commit is contained in:
Christopher Faylor 2010-02-26 19:37:43 +00:00
parent a149bfbfcd
commit b6336c95b4
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-02-26 Christopher Faylor <me+cygwin@cgf.cx>
* mkimport: cd away from temp directory or Windows will have problems
removing the directory.
2010-02-26 Corinna Vinschen <corinna@vinschen.de>
* libc/strptime.cc: Implement support for era, alt_digits and POSIX

View File

@ -80,4 +80,5 @@ for my $f (keys %text) {
unlink $libdll;
system $ar, 'crus', $libdll, glob('*.o'), @ARGV;
unlink glob('*.o');
chdir '/tmp'; # Allow $dir directory removal on Windows
exit 1 if $?;