diff options
author | marha <marha@users.sourceforge.net> | 2010-11-01 15:49:36 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-11-01 15:49:36 +0000 |
commit | a0fe511b67d36291e2e2d409bbdb7ac46b860478 (patch) | |
tree | 41c1075e74eb3acd83af611ceffb8673772a75f9 /tools/mhmake | |
parent | c3d55347b14c80f553ab8c487baded1a44acf68c (diff) | |
download | vcxsrv-a0fe511b67d36291e2e2d409bbdb7ac46b860478.tar.gz vcxsrv-a0fe511b67d36291e2e2d409bbdb7ac46b860478.tar.bz2 vcxsrv-a0fe511b67d36291e2e2d409bbdb7ac46b860478.zip |
Solved release compilation error
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
{
|