Merge pull request #4455 from FearlessTobi/port-1619
Port yuzu-emu/yuzu#1619: "Handle missing git info when building"
This commit is contained in:
commit
4e255a40fc
|
@ -33,6 +33,10 @@ else()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT HEAD_HASH)
|
if(NOT HEAD_HASH)
|
||||||
file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024)
|
if(EXISTS "@GIT_DATA@/head-ref")
|
||||||
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024)
|
||||||
|
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||||
|
else()
|
||||||
|
set(HEAD_HASH "Unknown")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
Reference in New Issue