summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2003-02-14 16:13:07 (GMT)
committerKen Martin <ken.martin@kitware.com>2003-02-14 16:13:07 (GMT)
commit04d604ec89fe6aee3d636701081c2a84ef566644 (patch)
tree016c2e3835754b5ab926afc282f63a2f07af1930 /Source
parent3453d104124844bb5619d0ecfad3922deb46909d (diff)
downloadCMake-04d604ec89fe6aee3d636701081c2a84ef566644.zip
CMake-04d604ec89fe6aee3d636701081c2a84ef566644.tar.gz
CMake-04d604ec89fe6aee3d636701081c2a84ef566644.tar.bz2
Lowercase has a bad signiture, so I have to live with it
Diffstat (limited to 'Source')
-rw-r--r--Source/cmaketest.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmaketest.cxx b/Source/cmaketest.cxx
index 515e978..0c99135 100644
--- a/Source/cmaketest.cxx
+++ b/Source/cmaketest.cxx
@@ -172,8 +172,7 @@ int do_cmaketest (int argc, char **argv)
std::cerr << "Error: cmaketest does not have a valid MAKEPROGRAM\n";
}
makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
- std::string lowerCaseCommand = makeCommand;
- cmSystemTools::LowerCase(lowerCaseCommand);
+ std::string lowerCaseCommand = cmSystemTools::LowerCase(makeCommand);
// if msdev is the make program then do the following
// MSDEV 6.0
if(lowerCaseCommand.find("msdev") != std::string::npos)