1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

Chase GIT_VERSION rename after 923700a167

This commit is contained in:
Jan Beich 2019-02-28 01:05:29 +00:00 committed by Ivan
parent de5379a69f
commit 240ba39d16

View File

@ -61,15 +61,15 @@ function(gen_git_version rpcs3_src_dir)
# Don't update if it's already the same.
file(STRINGS ${GIT_VERSION_FILE} match
REGEX "${GIT_VERSION}")
REGEX "${RPCS3_GIT_VERSION}")
if(NOT "${match}" STREQUAL "")
set(GIT_VERSION_UPDATE "0")
endif()
endif()
set(code_string "// This is a generated file.\n\n"
"#define RPCS3_GIT_VERSION \"${GIT_VERSION}\"\n"
"#define RPCS3_GIT_BRANCH \"${GIT_BRANCH}\"\n\n"
"#define RPCS3_GIT_VERSION \"${RPCS3_GIT_VERSION}\"\n"
"#define RPCS3_GIT_BRANCH \"${RPCS3_GIT_BRANCH}\"\n\n"
"// If you don't want this file to update/recompile, change to 1.\n"
"#define RPCS3_GIT_VERSION_NO_UPDATE 0\n")