From 2b1008913cdd6a3b9b6c52d2e1616649bd20ee97 Mon Sep 17 00:00:00 2001 From: marha Date: Sun, 5 Sep 2010 18:40:23 +0000 Subject: Make sure that mhmake and mhmake_dbg are using the same autodep filename in case mhmakeconf is not defined --- tools/mhmake/src/util.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tools/mhmake/src/util.cpp') diff --git a/tools/mhmake/src/util.cpp b/tools/mhmake/src/util.cpp index 79a0424da..f16134551 100644 --- a/tools/mhmake/src/util.cpp +++ b/tools/mhmake/src/util.cpp @@ -591,8 +591,11 @@ void loadedmakefile::LoadMakefile() map::const_iterator pIt=m_CommandLineVars.begin(); while (pIt!=m_CommandLineVars.end()) { - md5_update(&ctx, (uint8*)pIt->first.c_str(), pIt->first.size()); - md5_update(&ctx, (uint8*)pIt->second.c_str(), pIt->second.size()); + if (pIt->first!="MAKE") + { + md5_update(&ctx, (uint8*)pIt->first.c_str(), pIt->first.size()); + md5_update(&ctx, (uint8*)pIt->second.c_str(), pIt->second.size()); + } pIt++; } md5_update(&ctx, (uint8*)m_Makefile->GetFullFileName().c_str(), m_Makefile->GetFullFileName().size()); -- cgit v1.2.3