From 62a1827a2f1c1dc784f5797a86d774f6b3c9ad13 Mon Sep 17 00:00:00 2001 From: Michael Jonathan Lee Date: Sat, 14 Dec 2024 18:54:52 +0000 Subject: [PATCH] fix tbd tool path in main CMakeLists --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4cb9e9b8..1f79fb2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ tbd_storages_activate() # make the TBD helper tool available to CMake if(NOT TBD_TOOL) - find_program(TBD_TOOL NAMES tbd PATHS ${CMAKE_SOURCE_DIR/tools/bin} NO_CACHE) + find_program(TBD_TOOL NAMES tbd PATHS "${CMAKE_SOURCE_DIR}/tools/bin") endif() if ("${TBD_TOOLCHAIN}" STREQUAL "desktop")