diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 210007b75..b6d4c4fae 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function public: bool operator () (const cmSourceFile &f, const cmSourceFile &test) const { - return !stricmp(f.GetSourceName().c_str(),test.GetSourceName().c_str()); + return !strcmp(f.GetSourceName().c_str(),test.GetSourceName().c_str()); } };