mirror of
https://github.com/libretro/ppsspp.git
synced 2025-04-04 04:31:32 +00:00
Fix typo breaking git-version.cpp gen in cmake.
This commit is contained in:
parent
3ffffb3670
commit
ef494f15e2
@ -20,14 +20,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 "PPSSPP_GIT_VERSION_NO_UPDATE = 1")
|
REGEX "PPSSPP_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()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user