From e2d04bbb09e27791ce1ab2165b92f3a443a58aa4 Mon Sep 17 00:00:00 2001 From: ferdymercury Date: Thu, 23 Apr 2026 16:59:40 +0200 Subject: [PATCH] [roottest] fix typo in variable name ROOT_genreflex_CMD is used everywhere not ROOT_genreflex_cmd Found out while investigating failures in https://github.com/root-project/root/pull/21890/ (cherry picked from commit 7a87fb8dac03df98a0df8dfe7e559c9902703fc4) --- cmake/modules/RootMacros.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/RootMacros.cmake b/cmake/modules/RootMacros.cmake index 3365f45ff0158..773561f83d38f 100644 --- a/cmake/modules/RootMacros.cmake +++ b/cmake/modules/RootMacros.cmake @@ -2749,7 +2749,7 @@ macro(ROOTTEST_GENERATE_REFLEX_DICTIONARY dictionary) set(CMAKE_ROOTTEST_NOROOTMAP OFF) endif() - set(ROOT_genreflex_cmd ${ROOT_BINDIR}/genreflex) + set(ROOT_genreflex_CMD ${ROOT_BINDIR}/genreflex) ROOTTEST_TARGETNAME_FROM_FILE(targetname ${dictionary})