Fix quoting in cmake

This commit is contained in:
Nikolay Amiantov 2018-02-23 21:44:29 +03:00 committed by Ani
parent 5266dd6c60
commit 41bd07274f
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. # Don't update if marked not to update.
file(STRINGS ${GIT_VERSION_FILE} match file(STRINGS ${GIT_VERSION_FILE} match
REGEX "RPCS3_GIT_VERSION_NO_UPDATE 1") REGEX "RPCS3_GIT_VERSION_NO_UPDATE 1")
if(NOT ${match} EQUAL "") if(NOT "${match}" EQUAL "")
set(GIT_VERSION_UPDATE "0") set(GIT_VERSION_UPDATE "0")
endif() endif()
# Don't update if it's already the same. # Don't update if it's already the same.
file(STRINGS ${GIT_VERSION_FILE} match file(STRINGS ${GIT_VERSION_FILE} match
REGEX "${GIT_VERSION}") REGEX "${GIT_VERSION}")
if(NOT ${match} EQUAL "") if(NOT "${match}" EQUAL "")
set(GIT_VERSION_UPDATE "0") set(GIT_VERSION_UPDATE "0")
endif() endif()
endif() endif()