diff options
author | Adam <Adam@anope.org> | 2015-03-22 10:26:49 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2015-03-22 10:26:53 -0400 |
commit | 4c54a3939f9e36f47cd912275f4dbfdb4e64f8d9 (patch) | |
tree | dd296930316ec9ccaa00664511da3ad4535dd7ad | |
parent | 3d09748d1cd604f81ab6dd6953bc9788cfe99040 (diff) |
Change git version name back to what it was, which the core uses
-rw-r--r-- | include/version.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/version.cpp b/include/version.cpp index 22921202b..f6feb3354 100644 --- a/include/version.cpp +++ b/include/version.cpp @@ -108,7 +108,7 @@ static bool write_build_h(const std::string &buildh, const std::string &git_vers fd << "/* This file is automatically generated by version.cpp - do not edit it! */" << std::endl; fd << build << std::endl; if (!git_version.empty()) - fd << "#define GIT_VERSION \"" << git_version << "\"" << std::endl; + fd << "#define VERSION_GIT \"" << git_version << "\"" << std::endl; fd.close(); return true; |