mirror of
https://github.com/reactos/CMake.git
synced 2025-03-05 18:37:46 +00:00
Merge topic 'GetPrerequisites-fix-find_program-call'
1d1f29f4 GetPrerequisites: Fix call to find_program for `ri` tool
This commit is contained in:
commit
c241679956
@ -430,8 +430,8 @@ function(gp_resolve_item context item exepath dirs resolved_item_var)
|
||||
if(WIN32 AND NOT UNIX)
|
||||
if(NOT resolved)
|
||||
set(ri "ri-NOTFOUND")
|
||||
find_program(ri "${item}" PATHS "${exepath};${dirs}" NO_DEFAULT_PATH)
|
||||
find_program(ri "${item}" PATHS "${exepath};${dirs}")
|
||||
find_program(ri "${item}" PATHS ${exepath} ${dirs} NO_DEFAULT_PATH)
|
||||
find_program(ri "${item}" PATHS ${exepath} ${dirs})
|
||||
if(ri)
|
||||
#message(STATUS "info: 'find_program' in exepath/dirs (${ri})")
|
||||
set(resolved 1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user