One more time... case does not matter on cygwin

This commit is contained in:
Bill Hoffman 2001-11-07 09:29:25 -05:00
parent 8139a3121d
commit 87cbb11742
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ bool cmCacheManager::LoadCache(const char* path,
{ {
std::string currentcwd = path; std::string currentcwd = path;
std::string oldcwd = this->GetCacheValue("CMAKE_CACHEFILE_DIR"); std::string oldcwd = this->GetCacheValue("CMAKE_CACHEFILE_DIR");
#ifdef _WIN32 #if defined(_WIN32) || defined(__CYGWIN__)
currentcwd = cmSystemTools::LowerCase(currentcwd); currentcwd = cmSystemTools::LowerCase(currentcwd);
oldcwd = cmSystemTools::LowerCase(oldcwd); oldcwd = cmSystemTools::LowerCase(oldcwd);
#endif // _WIN32 #endif // _WIN32