diff options
-rw-r--r-- | tools/mhmake/src/fileinfo.cpp | 4 | ||||
-rw-r--r-- | tools/mhmake/src/util.h | 2 |
2 files changed, 1 insertions, 5 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++;
}
diff --git a/tools/mhmake/src/util.h b/tools/mhmake/src/util.h index 333e36b00..a9bd76cfc 100644 --- a/tools/mhmake/src/util.h +++ b/tools/mhmake/src/util.h @@ -50,7 +50,7 @@ #define PLATFORM "linux"
#endif
-#define MHMAKEVER "3.0.7"
+#define MHMAKEVER "3.0.8"
class makecommand
{
|