diff options
| author | 2018-10-29 23:39:33 +0100 | |
|---|---|---|
| committer | 2018-10-29 23:39:33 +0100 | |
| commit | 44c80e5d8bf5d86dc15761f504e7fe0114abd1c3 (patch) | |
| tree | c37783c249cc311e13d600a8d8e3a11f52ed0782 | |
| parent | Merge pull request #1613 from ReinUsesLisp/gl-utils (diff) | |
| download | yuzu-44c80e5d8bf5d86dc15761f504e7fe0114abd1c3.tar.gz yuzu-44c80e5d8bf5d86dc15761f504e7fe0114abd1c3.tar.xz yuzu-44c80e5d8bf5d86dc15761f504e7fe0114abd1c3.zip | |
Handle missing git info when building
| -rw-r--r-- | externals/cmake-modules/GetGitRevisionDescription.cmake.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/externals/cmake-modules/GetGitRevisionDescription.cmake.in b/externals/cmake-modules/GetGitRevisionDescription.cmake.in index 888ce13aa..0d7eb3c26 100644 --- a/externals/cmake-modules/GetGitRevisionDescription.cmake.in +++ b/externals/cmake-modules/GetGitRevisionDescription.cmake.in | |||
| @@ -33,6 +33,10 @@ else() | |||
| 33 | endif() | 33 | endif() |
| 34 | 34 | ||
| 35 | if(NOT HEAD_HASH) | 35 | if(NOT HEAD_HASH) |
| 36 | file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024) | 36 | if(EXISTS "@GIT_DATA@/head-ref") |
| 37 | string(STRIP "${HEAD_HASH}" HEAD_HASH) | 37 | file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024) |
| 38 | string(STRIP "${HEAD_HASH}" HEAD_HASH) | ||
| 39 | else() | ||
| 40 | set(HEAD_HASH "Unknown") | ||
| 41 | endif() | ||
| 38 | endif() | 42 | endif() |