From 4c54a3939f9e36f47cd912275f4dbfdb4e64f8d9 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 22 Mar 2015 10:26:49 -0400 Subject: [PATCH] Change git version name back to what it was, which the core uses --- include/version.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;