Merge topic 'BundleUtilities-otool-l-error'

22554c3166 BundleUtilities: message(FATAL_ERROR) on otool -l error

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2227
This commit is contained in:
Brad King 2018-07-23 15:02:42 +00:00 committed by Kitware Robot
commit 21835a2cea

View File

@ -421,7 +421,12 @@ function(get_item_rpaths item rpaths_var)
execute_process(
COMMAND "${otool_cmd}" -l "${item}"
OUTPUT_VARIABLE load_cmds_ov
RESULT_VARIABLE otool_rv
ERROR_VARIABLE otool_ev
)
if(NOT otool_rv STREQUAL "0")
message(FATAL_ERROR "otool -l failed: ${otool_rv}\n${otool_ev}")
endif()
string(REGEX REPLACE "[^\n]+cmd LC_RPATH\n[^\n]+\n[^\n]+path ([^\n]+) \\(offset[^\n]+\n" "rpath \\1\n" load_cmds_ov "${load_cmds_ov}")
string(REGEX MATCHALL "rpath [^\n]+" load_cmds_ov "${load_cmds_ov}")
string(REGEX REPLACE "rpath " "" load_cmds_ov "${load_cmds_ov}")