]> git.ipfire.org Git - thirdparty/git.git/blobdiff - contrib/buildsystems/engine.pl
msvc: add a Makefile target to pre-generate the Visual Studio solution
[thirdparty/git.git] / contrib / buildsystems / engine.pl
index 8bb07e8e25cc505ad25a97731fb482dc2b8b2334..fba8a3f056a0e16591496f77a8b505ec01d01964 100755 (executable)
@@ -82,7 +82,8 @@ EOM
 # Capture the make dry stderr to file for review (will be empty for a release build).
 
 my $ErrsFile = "msvc-build-makedryerrors.txt";
-@makedry = `make -C $git_dir -n MSVC=1 V=1 2>$ErrsFile` if !@makedry;
+@makedry = `make -C $git_dir -n MSVC=1 SKIP_VCPKG=1 V=1 2>$ErrsFile`
+if !@makedry;
 # test for an empty Errors file and remove it
 unlink $ErrsFile if -f -z $ErrsFile;