summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2016-04-08 12:25:10 -0400
committerAndrew Dunstan <andrew@dunslane.net>2016-04-08 12:29:36 -0400
commit9e77d0e3cf83b3a207d68a81738d7d6f0b60fe34 (patch)
treea622701c451b50079e48adcff7492782ebf0165c
parent209880ba7da708ab8df74dc47b9fad0665807f64 (diff)
Turn down MSVC compiler verbosity
Most of what is produced by the detailed verbosity level is of no interest at all, so switch to the normal level for more usable output. Christian Ullrich Backpatch to all live branches
-rw-r--r--src/tools/msvc/build.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/build.pl b/src/tools/msvc/build.pl
index c947bbe318e..5bceb1a4d07 100644
--- a/src/tools/msvc/build.pl
+++ b/src/tools/msvc/build.pl
@@ -53,7 +53,7 @@ elsif ($ARGV[0] ne "RELEASE")
if ($buildwhat and $vcver >= 10.00)
{
system(
-"msbuild $buildwhat.vcxproj /verbosity:detailed /p:Configuration=$bconf");
+"msbuild $buildwhat.vcxproj /verbosity:normal /p:Configuration=$bconf");
}
elsif ($buildwhat)
{
@@ -61,7 +61,7 @@ elsif ($buildwhat)
}
else
{
- system("msbuild pgsql.sln /verbosity:detailed /p:Configuration=$bconf");
+ system("msbuild pgsql.sln /verbosity:normal /p:Configuration=$bconf");
}
# report status