Merge topic 'GetPrerequisites-file-command-update'
fe558718
GetPrerequisites: Update output matching for newer 'file' versions
This commit is contained in:
commit
91234717f7
|
@ -260,6 +260,13 @@ function(is_file_executable file result_var)
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# "file" version 5.22 does not print "(used shared libraries)"
|
||||||
|
# but uses "interpreter"
|
||||||
|
if("${file_ov}" MATCHES "shared object.*interpreter")
|
||||||
|
set(${result_var} 1 PARENT_SCOPE)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
else()
|
else()
|
||||||
message(STATUS "warning: No 'file' command, skipping execute_process...")
|
message(STATUS "warning: No 'file' command, skipping execute_process...")
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue