diff options
Diffstat (limited to 'community/domoticz/do-not-fail-if-git-missing.patch')
-rw-r--r-- | community/domoticz/do-not-fail-if-git-missing.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/community/domoticz/do-not-fail-if-git-missing.patch b/community/domoticz/do-not-fail-if-git-missing.patch new file mode 100644 index 0000000000..140cc6f6ce --- /dev/null +++ b/community/domoticz/do-not-fail-if-git-missing.patch @@ -0,0 +1,11 @@ +--- a/getgit.cmake ++++ b/getgit.cmake +@@ -4,7 +4,7 @@ + # the git.cmake module is part of the standard distribution + find_package(Git) + if(NOT GIT_FOUND) +- MESSAGE(FATAL_ERROR "Git not found!.") ++ MESSAGE(WARNING "Git not found!.") + endif() + + MACRO(Gitversion_GET_REVISION dir variable) |