diff options
Diffstat (limited to 'tools/mhmake')
-rw-r--r-- | tools/mhmake/src/mhmakefileparser.cpp | 2 | ||||
-rw-r--r-- | tools/mhmake/src/util.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/mhmake/src/mhmakefileparser.cpp b/tools/mhmake/src/mhmakefileparser.cpp index 38c5cd3ac..f281bc7dd 100644 --- a/tools/mhmake/src/mhmakefileparser.cpp +++ b/tools/mhmake/src/mhmakefileparser.cpp @@ -295,7 +295,7 @@ string mhmakefileparser::ExpandMacro(const string &Expr, bool &Recurse) const throw string("Unknown function specified in macro: ")+Func;
}
#else
- return (this->*pFunc)(Arg);
+ return (this->*pFunc)(Arg, &Expr);
#endif
}
else
diff --git a/tools/mhmake/src/util.h b/tools/mhmake/src/util.h index 4a4b75488..8676bd0d6 100644 --- a/tools/mhmake/src/util.h +++ b/tools/mhmake/src/util.h @@ -50,7 +50,7 @@ #define PLATFORM "linux"
#endif
-#define MHMAKEVER "2.3.16"
+#define MHMAKEVER "2.3.17"
class makecommand
{
|