From 4e5fed81decfe5d8b19de07fd7082bff1efb509b Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 10 Feb 2025 15:08:19 +0100 Subject: [PATCH] fix a bug when `CGAL_BRANCH_BUILD` is falsy (in testsuite tarballs for example) --- Installation/cmake/modules/CGALHelpers.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installation/cmake/modules/CGALHelpers.cmake b/Installation/cmake/modules/CGALHelpers.cmake index 4c91469324f..936ef591f03 100644 --- a/Installation/cmake/modules/CGALHelpers.cmake +++ b/Installation/cmake/modules/CGALHelpers.cmake @@ -54,7 +54,7 @@ function(CGAL_handle_subdirectories subdir_name plural_name) else() - file(GLOB list "*") + file(GLOB list "${subdir_name}/*") endif()