COMP: Fixed forced bool conversion warning.

This commit is contained in:
Brad King 2005-05-06 12:38:23 -04:00
parent e8911705d6
commit dc75c22645
1 changed files with 1 additions and 1 deletions

View File

@ -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.