summaryrefslogtreecommitdiffstats
path: root/CMakeModules
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2019-04-15 23:39:55 +0200
committerfearlessTobi <thm.frey@gmail.com>2019-04-16 00:34:22 +0200
commitb67be7154d5dd46252d60b15774d0cfa689ed01e (patch)
tree0afecee2176b846a37b71ddd01b28e00d589fef5 /CMakeModules
parenttravis: use prebuilt image (#3839) (diff)
downloadyuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.tar
yuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.tar.gz
yuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.tar.bz2
yuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.tar.lz
yuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.tar.xz
yuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.tar.zst
yuzu-b67be7154d5dd46252d60b15774d0cfa689ed01e.zip
Diffstat (limited to 'CMakeModules')
-rw-r--r--CMakeModules/GenerateSCMRev.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeModules/GenerateSCMRev.cmake b/CMakeModules/GenerateSCMRev.cmake
index 08315a1f1..5e00d839f 100644
--- a/CMakeModules/GenerateSCMRev.cmake
+++ b/CMakeModules/GenerateSCMRev.cmake
@@ -19,7 +19,7 @@ set(BUILD_VERSION "0")
if (BUILD_REPOSITORY)
# regex capture the string nightly or canary into CMAKE_MATCH_1
string(REGEX MATCH "yuzu-emu/yuzu-?(.*)" OUTVAR ${BUILD_REPOSITORY})
- if (${CMAKE_MATCH_COUNT} GREATER 0)
+ if ("${CMAKE_MATCH_COUNT}" GREATER 0)
# capitalize the first letter of each word in the repo name.
string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1})
foreach(WORD ${REPO_NAME_LIST})