One more time... case does not matter on cygwin
This commit is contained in:
parent
8139a3121d
commit
87cbb11742
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue