Allow MSVC's contribcheck and modulescheck to run independently.
authorAndrew Dunstan <[email protected]>
Thu, 2 Jul 2015 03:28:41 +0000 (23:28 -0400)
committerAndrew Dunstan <[email protected]>
Thu, 2 Jul 2015 03:28:41 +0000 (23:28 -0400)
These require a temp install to have been done, so we now make sure it
is done before proceeding.

Michael Paquier.

src/tools/msvc/vcregress.pl

index ddb628d154509646e815a348e3199f07db52a824..619638361575fdafa6f621c10d8d6be0a2f5ff46 100644 (file)
@@ -290,6 +290,7 @@ sub subdircheck
 
 sub contribcheck
 {
+   InstallTemp();
    chdir "$topdir/contrib";
    foreach my $module (glob("*"))
    {
@@ -309,6 +310,7 @@ sub contribcheck
 
 sub modulescheck
 {
+   InstallTemp();
    chdir "$topdir/src/test/modules";
    foreach my $module (glob("*"))
    {