1
0
Fork 0
mirror of https://github.com/PabloMK7/citra.git synced 2025-04-30 16:49:48 +02:00

Merge pull request from FearlessTobi/port-1619

Port : "Handle missing git info when building"
This commit is contained in:
bunnei 2018-11-23 23:16:27 -05:00 committed by GitHub
commit 4e255a40fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()