Merge branch 'ms/msvc'

* ms/msvc:
  Fix the exit code of MSVC build scripts on cygwin
  Fix MSVC build on cygwin
This commit is contained in:
Junio C Hamano 2009-10-09 00:02:23 -07:00
commit 8ba5effa26
3 changed files with 3 additions and 3 deletions

View File

@ -45,4 +45,4 @@ if ($is_linking) {
push(@args, @cflags);
}
#printf("**** @args\n");
exit system(@args);
exit (system(@args) != 0);

View File

@ -23,4 +23,4 @@ while (@ARGV) {
}
unshift(@args, "lib.exe");
# printf("**** @args\n");
exit system(@args);
exit (system(@args) != 0);