From 49bb42d33e93e9eab45133f800c9c8d921bfee65 Mon Sep 17 00:00:00 2001 From: Florian Uhlig <f.uhlig@gsi.de> Date: Fri, 18 Jun 2021 14:01:52 +0200 Subject: [PATCH] Fix a compilation error introduced with MR 323 An external packages is only updated if there is a change in the commit hash of the external package. Unfortunately there was no change of the hash value in MR 323 but only a patch setp was added. The introduced patch is such not applied since no action is taken at all. This commit fixes the problem by changing the commit hash by one. The new commit only adds code which isn't compiled in our setup such is safe. --- external/ipc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/ipc/CMakeLists.txt b/external/ipc/CMakeLists.txt index b8bf039110..cb1c315bb3 100644 --- a/external/ipc/CMakeLists.txt +++ b/external/ipc/CMakeLists.txt @@ -5,7 +5,7 @@ download_project_if_needed(PROJECT fles_ipc GIT_REPOSITORY "https://github.com/cbm-fles/flesnet" - GIT_TAG "92ff50ead204d0acb4fccd9cbb9876817d077528" + GIT_TAG "f3053e064df61f434a4af4b353178f881dd8a5d0" GIT_STASH TRUE SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/ipc PATCH_COMMAND "patch -p1 < ${CMAKE_CURRENT_SOURCE_DIR}/TimesliceMultiSubscriber_init.patch" -- GitLab