diff options
author | marha <marha@users.sourceforge.net> | 2009-10-01 15:17:41 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-10-01 15:17:41 +0000 |
commit | 945c71554aa1866a5286dd4b8f5b199dd7af9be9 (patch) | |
tree | c964101dc9340cfec63adb6b8aa14c3ce6d44348 /tools/mhmake | |
parent | ec28acac996139120b368065d96fb7879bcb6ce5 (diff) | |
download | vcxsrv-945c71554aa1866a5286dd4b8f5b199dd7af9be9.tar.gz vcxsrv-945c71554aa1866a5286dd4b8f5b199dd7af9be9.tar.bz2 vcxsrv-945c71554aa1866a5286dd4b8f5b199dd7af9be9.zip |
Removed useless code.
Diffstat (limited to 'tools/mhmake')
-rw-r--r-- | tools/mhmake/src/mhmakefileparser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/mhmake/src/mhmakefileparser.cpp b/tools/mhmake/src/mhmakefileparser.cpp index f8304df3f..af7d75dfe 100644 --- a/tools/mhmake/src/mhmakefileparser.cpp +++ b/tools/mhmake/src/mhmakefileparser.cpp @@ -594,10 +594,6 @@ void mhmakefileparser::GetAutoDeps(const refptr<fileinfo> &FirstDep,set< refptr< void mhmakefileparser::UpdateAutomaticDependencies(const refptr<fileinfo> &Target)
{
m_AutoDepsDirty=true; /* Always assume dirty since in the autodeps file, the md5 strings are also saved. */
- const char *pName=Target->GetFullFileName().c_str();
- const char *pExt=strrchr(pName,'.');
- if (!pExt)
- return;
if (Target->IsAutoDepExtention())
{
// we have to search for the include files in the first dependency of Target
|