mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 12:29:58 +00:00
Merge pull request #1619 from janisozaur/patch-12
Handle missing git info when building
This commit is contained in:
commit
997c3dc6ff
1 changed files with 6 additions and 2 deletions
|
@ -33,6 +33,10 @@ else()
|
|||
endif()
|
||||
|
||||
if(NOT HEAD_HASH)
|
||||
file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024)
|
||||
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||
if(EXISTS "@GIT_DATA@/head-ref")
|
||||
file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024)
|
||||
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||
else()
|
||||
set(HEAD_HASH "Unknown")
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue