Merge branch 'md/list-objects-filter-combo'
[gitweb.git] / contrib / buildsystems / engine.pl
index 8bb07e8e25cc505ad25a97731fb482dc2b8b2334..fba8a3f056a0e16591496f77a8b505ec01d01964 100755 (executable)
@@ -82,7 +82,8 @@ sub showUsage
 # 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;