summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-10-09 16:59:57 (GMT)
committerGitHub <noreply@github.com>2019-10-09 16:59:57 (GMT)
commit85e8a034209a1accf8d4ac6d9b4d2fa49d84d349 (patch)
tree8753684e121be12cdca211fd5b8548aa1483cc52
parente27b808200d69d31eb18acf2ac1d949ddee2fc74 (diff)
parenta872ee137c88b98c4d5ce2391c60e304d68faccb (diff)
downloadDoxygen-85e8a034209a1accf8d4ac6d9b4d2fa49d84d349.zip
Doxygen-85e8a034209a1accf8d4ac6d9b4d2fa49d84d349.tar.gz
Doxygen-85e8a034209a1accf8d4ac6d9b4d2fa49d84d349.tar.bz2
Merge pull request #7291 from albert-github/feature/issue_7285
issue #7285 git executable required
-rw-r--r--cmake/git_watcher.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/git_watcher.cmake b/cmake/git_watcher.cmake
index 6447b86..6a50476 100644
--- a/cmake/git_watcher.cmake
+++ b/cmake/git_watcher.cmake
@@ -69,7 +69,7 @@ CHECK_OPTIONAL_VARIABLE(GIT_WORKING_DIR "${CMAKE_SOURCE_DIR}")
# Check the optional git variable.
# If it's not set, we'll try to find it using the CMake packaging system.
if(NOT DEFINED GIT_EXECUTABLE)
- find_package(Git QUIET REQUIRED)
+ find_package(Git QUIET)
endif()
CHECK_REQUIRED_VARIABLE(GIT_EXECUTABLE)