Fix git-version.h not correctly updating.

This commit is contained in:
Kaiwen Xu 2018-03-22 23:33:36 -07:00 committed by Ivan
parent 1ae724f739
commit 32d38a4633
1 changed files with 2 additions and 2 deletions

View File

@ -40,14 +40,14 @@ if(EXISTS ${GIT_VERSION_FILE})
# Don't update if marked not to update.
file(STRINGS ${GIT_VERSION_FILE} match
REGEX "RPCS3_GIT_VERSION_NO_UPDATE 1")
if(NOT "${match}" EQUAL "")
if(NOT "${match}" STREQUAL "")
set(GIT_VERSION_UPDATE "0")
endif()
# Don't update if it's already the same.
file(STRINGS ${GIT_VERSION_FILE} match
REGEX "${GIT_VERSION}")
if(NOT "${match}" EQUAL "")
if(NOT "${match}" STREQUAL "")
set(GIT_VERSION_UPDATE "0")
endif()
endif()