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:
commit
8ba5effa26
@ -45,4 +45,4 @@ if ($is_linking) {
|
||||
push(@args, @cflags);
|
||||
}
|
||||
#printf("**** @args\n");
|
||||
exit system(@args);
|
||||
exit (system(@args) != 0);
|
||||
|
@ -23,4 +23,4 @@ while (@ARGV) {
|
||||
}
|
||||
unshift(@args, "lib.exe");
|
||||
# printf("**** @args\n");
|
||||
exit system(@args);
|
||||
exit (system(@args) != 0);
|
||||
|
Loading…
Reference in New Issue
Block a user