From 5c8bf6d90cc9c5d5f203b96a31302d21def8388b Mon Sep 17 00:00:00 2001 From: Oliver Lantwin Date: Thu, 22 Jan 2026 16:28:25 +0100 Subject: [PATCH 1/3] fix: update geant4_vmc prefer_system_check --- geant4_vmc.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/geant4_vmc.sh b/geant4_vmc.sh index 572c4b49..039a4fb5 100644 --- a/geant4_vmc.sh +++ b/geant4_vmc.sh @@ -19,10 +19,8 @@ prefer_system_check: | ls $GEANT4_VMC_ROOT/bin > /dev/null && \ ls $GEANT4_VMC_ROOT/lib/libg4root.so > /dev/null && \ ls $GEANT4_VMC_ROOT/lib/libgeant4vmc.so> /dev/null && \ - ls $GEANT4_VMC_ROOT/lib/libmtroot.so > /dev/null && \ ls $GEANT4_VMC_ROOT/include/g4root > /dev/null && \ ls $GEANT4_VMC_ROOT/include/geant4vmc > /dev/null && \ - ls $GEANT4_VMC_ROOT/include/mtroot > /dev/null && \ true --- #!/bin/bash -e From 369f87a6b4e6f6f2f77d4d7963b28b87c2534065 Mon Sep 17 00:00:00 2001 From: Oliver Lantwin Date: Thu, 22 Jan 2026 16:30:06 +0100 Subject: [PATCH 2/3] fix: add ROOTEGPYTHIA6 prefer_system_check --- rootegpythia6.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rootegpythia6.sh b/rootegpythia6.sh index 4b69e0fc..4918e4ca 100644 --- a/rootegpythia6.sh +++ b/rootegpythia6.sh @@ -13,6 +13,11 @@ prepend_path: LD_LIBRARY_PATH: "$ROOTEGPYTHIA6_ROOT/lib" ROOT_INCLUDE_PATH: "$ROOTEGPYTHIA6_ROOT/include" CMAKE_MODULE_PATH: "$ROOTEGPYTHIA6_ROOT/lib/cmake/ROOTEGPythia6/Modules" +prefer_system_check: | + if [ ! -z "$ROOTEGPYTHIA6_VERSION" ]; then + exit 0 + fi + exit 1 --- #!/bin/bash -e From 416d216e5bed586650b7a48143e0dcb4d1ec309c Mon Sep 17 00:00:00 2001 From: Oliver Lantwin Date: Thu, 22 Jan 2026 17:09:16 +0100 Subject: [PATCH 3/3] fix: add FairCMakeModules prefer_system_check --- faircmakemodules.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/faircmakemodules.sh b/faircmakemodules.sh index 490b512c..581239cf 100644 --- a/faircmakemodules.sh +++ b/faircmakemodules.sh @@ -6,6 +6,11 @@ build_requires: - CMake - "GCC-Toolchain:(?!osx)" - alibuild-recipe-tools +prefer_system_check: | + if [ ! -z "$FAIRCMAKEMODULES_VERSION" ]; then + exit 0 + fi + exit 1 --- #!/bin/sh