diff options
author | Andrew Dunstan | 2016-04-08 16:25:10 +0000 |
---|---|---|
committer | Andrew Dunstan | 2016-04-08 16:33:29 +0000 |
commit | d2189a8026dbfa7542c96e4a63ef09b02e625748 (patch) | |
tree | 0bf66faa6812529b8166ba12a02fe78957dfead9 | |
parent | b1b6aa88b146e0e7ca9b2eb5911d1f56064ccabb (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.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/build.pl b/src/tools/msvc/build.pl index 66b5c4c59ba..75037905c5a 100644 --- a/src/tools/msvc/build.pl +++ b/src/tools/msvc/build.pl @@ -56,7 +56,7 @@ if ($buildwhat) } else { - system("msbuild pgsql.sln /verbosity:detailed /p:Configuration=$bconf"); + system("msbuild pgsql.sln /verbosity:normal /p:Configuration=$bconf"); } # report status |