diff options
author | marha <marha@users.sourceforge.net> | 2011-10-27 09:44:42 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-10-27 09:44:42 +0200 |
commit | e05025bd50cba8c6788e60128af8f07b78a57c2d (patch) | |
tree | b3eadf15303fc76ab5bc17176383cb6fdc5c1b87 /tools/mhmake/src/fileinfo.cpp | |
parent | da589895573039c51b6c68af41745ba62a9f07b6 (diff) | |
download | vcxsrv-e05025bd50cba8c6788e60128af8f07b78a57c2d.tar.gz vcxsrv-e05025bd50cba8c6788e60128af8f07b78a57c2d.tar.bz2 vcxsrv-e05025bd50cba8c6788e60128af8f07b78a57c2d.zip |
Made mhmake case sensitive for filenames
Diffstat (limited to 'tools/mhmake/src/fileinfo.cpp')
-rw-r--r-- | tools/mhmake/src/fileinfo.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/mhmake/src/fileinfo.cpp b/tools/mhmake/src/fileinfo.cpp index f6468900d..939a83ce6 100644 --- a/tools/mhmake/src/fileinfo.cpp +++ b/tools/mhmake/src/fileinfo.cpp @@ -284,11 +284,7 @@ string &NormalizePathName(string &Name) }
else
{
- #ifdef WIN32
- *pWr++ = tolower(Char);
- #else
*pWr++ = Char;
- #endif
}
Char=*pPtr++;
}
|