diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-10-09 00:02:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-09 00:02:23 -0700 |
commit | 8ba5effa26707fdc5b8a3b10f0fdd3007f657b64 (patch) | |
tree | 5aedbfbccfcd12aac9195b8e9e28908ff321695a /compat | |
parent | dc3c7a7256ed05a14baaffbc35c016f7ffde51c5 (diff) | |
parent | b5d18b8e6f68746a85edfea08e9aff3351d7e891 (diff) | |
download | git-8ba5effa26707fdc5b8a3b10f0fdd3007f657b64.tar.gz git-8ba5effa26707fdc5b8a3b10f0fdd3007f657b64.tar.xz |
Merge branch 'ms/msvc'
* ms/msvc:
Fix the exit code of MSVC build scripts on cygwin
Fix MSVC build on cygwin
Diffstat (limited to 'compat')
-rw-r--r-- | compat/vcbuild/scripts/clink.pl | 2 | ||||
-rw-r--r-- | compat/vcbuild/scripts/lib.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compat/vcbuild/scripts/clink.pl b/compat/vcbuild/scripts/clink.pl index 0ffd59f9f..f9528c0ea 100644 --- a/compat/vcbuild/scripts/clink.pl +++ b/compat/vcbuild/scripts/clink.pl @@ -45,4 +45,4 @@ if ($is_linking) { push(@args, @cflags); } #printf("**** @args\n"); -exit system(@args); +exit (system(@args) != 0); diff --git a/compat/vcbuild/scripts/lib.pl b/compat/vcbuild/scripts/lib.pl index 68f66446e..d8054e469 100644 --- a/compat/vcbuild/scripts/lib.pl +++ b/compat/vcbuild/scripts/lib.pl @@ -23,4 +23,4 @@ while (@ARGV) { } unshift(@args, "lib.exe"); # printf("**** @args\n"); -exit system(@args); +exit (system(@args) != 0); |