Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions cmake/modules/RootMacros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -1542,9 +1542,6 @@ function(ROOT_ADD_TEST test)
find_program(_exe ${_prg})
if(_exe) # if the command is found in the system, use it
set(_cmd ${_exe} ${ARG_COMMAND})
elseif(NOT IS_ABSOLUTE ${_prg}) # if not absolute, assume is found in current binary dir
set(_prg ${CMAKE_CURRENT_BINARY_DIR}/${_prg})
set(_cmd ${_prg} ${ARG_COMMAND})
else() # take as it is
set(_cmd ${_prg} ${ARG_COMMAND})
endif()
Expand Down
2 changes: 1 addition & 1 deletion roottest/root/rint/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ROOTTEST_ADD_TEST(missingSymbol
if (NOT MSVC)
# ROOT-5843
ROOTTEST_ADD_TEST(dotLibraries
COMMAND root -b -q -l -e ".libraries"
COMMAND $<TARGET_FILE:root> -b -q -l -e ".libraries"
PASSREGEX "libRint")
endif()

Expand Down
Loading