diff options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 90a3dde..e9b5a17 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1614,8 +1614,11 @@ int cmake::CheckBuildSystem() } } - // We do not need to rerun CMake. Check dependency integrity. - cmLocalUnixMakefileGenerator2::CheckDependencies(mf); + // We do not need to rerun CMake. Check dependency integrity. Use + // the make system's VERBOSE environment variable to enable verbose + // output. + bool verbose = cmSystemTools::GetEnv("VERBOSE"); + cmLocalUnixMakefileGenerator2::CheckDependencies(mf, verbose); // No need to rerun. return 0; |