summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-05-06 16:38:23 (GMT)
committerBrad King <brad.king@kitware.com>2005-05-06 16:38:23 (GMT)
commitdc75c22645f16f3781513e51ae6488df058d69e4 (patch)
treef251e5a73ca682a5fd78277bf7e35d21e1e04f32 /Source/cmake.cxx
parente8911705d6a790904f0c98f303de6ae370c60595 (diff)
downloadCMake-dc75c22645f16f3781513e51ae6488df058d69e4.zip
CMake-dc75c22645f16f3781513e51ae6488df058d69e4.tar.gz
CMake-dc75c22645f16f3781513e51ae6488df058d69e4.tar.bz2
COMP: Fixed forced bool conversion warning.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index e9b5a17..9a77c1f 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1617,7 +1617,7 @@ int cmake::CheckBuildSystem()
// 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");
+ bool verbose = cmSystemTools::GetEnv("VERBOSE") != 0;
cmLocalUnixMakefileGenerator2::CheckDependencies(mf, verbose);
// No need to rerun.