From 75a3a80ac1962a4d8d874e6e0f50c3e4be5c60d5 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Tue, 20 Aug 2019 16:34:53 +0200 Subject: [PATCH] CMake: Fix submodule update command --- cmake/FairMQLib.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FairMQLib.cmake b/cmake/FairMQLib.cmake index 3aab32be..9f0fc789 100644 --- a/cmake/FairMQLib.cmake +++ b/cmake/FairMQLib.cmake @@ -455,7 +455,7 @@ function(build_bundled package bundle) file(REMOVE ${${package}_BUILD_LOGFILE}) if(Git_FOUND) - exec(${GIT_EXECUTABLE} submodule update --init --recursive --depth 1 -- ${${package}_SOURCE_DIR}) + exec(${GIT_EXECUTABLE} submodule update --init --recursive -- ${${package}_SOURCE_DIR}) endif() if(${package} STREQUAL GTest)