diff options
author | Shauren <shauren.trinity@gmail.com> | 2020-05-30 17:42:14 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2020-05-30 17:42:14 +0200 |
commit | 1ae72db201189877c1b863fac140eb4b0a45c5bb (patch) | |
tree | 87ecc4e86a10d1ce003545295ec35556828775db /cmake/macros | |
parent | d435d5d5ba7040a0de16d5b97202b2e61fd03344 (diff) |
Build system: Print found git version when warning about it being too old
Diffstat (limited to 'cmake/macros')
-rw-r--r-- | cmake/macros/FindGit.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/macros/FindGit.cmake b/cmake/macros/FindGit.cmake index 9cbb05d0340..31a4be760f2 100644 --- a/cmake/macros/FindGit.cmake +++ b/cmake/macros/FindGit.cmake @@ -41,6 +41,6 @@ else() message(STATUS "Git version too old : ${_GIT_VERSION}") message(FATAL_ERROR " Git was found but is OUTDATED - did you forget to install a recent version, or setting the path to it? - Observe that for revision hash/date to work you need at least version ${_REQUIRED_GIT_VERSION}") + Observe that for revision hash/date to work you need at least version ${_REQUIRED_GIT_VERSION}, found ${_GIT_VERSION}") endif() endif() |