aboutsummaryrefslogtreecommitdiff
path: root/src
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:37:20 -0400
commit01a07e6c11562127ad5e6f58d3d6128416b8ab65 (patch)
tree75bdf32bd788d6b5894f3da8f06aa6842f04fefc /src
parent8b737f90843157706b8b5eb401b2aff08da77781 (diff)
downloadpostgresql-01a07e6c11562127ad5e6f58d3d6128416b8ab65.tar.gz
postgresql-01a07e6c11562127ad5e6f58d3d6128416b8ab65.zip
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
Diffstat (limited to 'src')
-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 e107d4120a3..c4e4dc79a34 100644
--- a/src/tools/msvc/build.pl
+++ b/src/tools/msvc/build.pl
@@ -53,7 +53,7 @@ elsif (uc($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