summaryrefslogtreecommitdiff
path: root/compat/vcbuild/scripts
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-09-09 20:53:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-09-09 20:53:09 (GMT)
commitff75e6c99c291e0cf6d0e7f70e13f78e4606e5a8 (patch)
tree6c1256a43f2c1a983586966ba4de30d3ced91bf5 /compat/vcbuild/scripts
parent0df670bc0b8b5499859829ba0889ce96a75304a6 (diff)
parente58e40556fc40cc39c018d98f7fcc09bdf3c398e (diff)
downloadgit-ff75e6c99c291e0cf6d0e7f70e13f78e4606e5a8.zip
git-ff75e6c99c291e0cf6d0e7f70e13f78e4606e5a8.tar.gz
git-ff75e6c99c291e0cf6d0e7f70e13f78e4606e5a8.tar.bz2
Merge branch 'os/vcbuild'
Fix build procedure for MSVC. * os/vcbuild: contrib/buildsystems: fix expat library name for generated vcxproj vcbuild: fix batch file name in README vcbuild: fix library name for expat with make MSVC=1
Diffstat (limited to 'compat/vcbuild/scripts')
-rwxr-xr-xcompat/vcbuild/scripts/clink.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/vcbuild/scripts/clink.pl b/compat/vcbuild/scripts/clink.pl
index 61ad084..df167d1 100755
--- a/compat/vcbuild/scripts/clink.pl
+++ b/compat/vcbuild/scripts/clink.pl
@@ -66,7 +66,7 @@ while (@ARGV) {
}
push(@args, $lib);
} elsif ("$arg" eq "-lexpat") {
- push(@args, "expat.lib");
+ push(@args, "libexpat.lib");
} elsif ("$arg" =~ /^-L/ && "$arg" ne "-LTCG") {
$arg =~ s/^-L/-LIBPATH:/;
push(@lflags, $arg);