We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8ff47 commit 7f0f2a6Copy full SHA for 7f0f2a6
1 file changed
cpp/cmake_modules/BuildUtils.cmake
@@ -107,11 +107,7 @@ function(arrow_create_merged_static_lib output_target)
107
# We are not compatible with GNU libtool, so we need to avoid it.
108
function(validate_apple_libtool result_var item)
109
get_libtool_version("${item}" libtool_version)
110
- if("${libtool_version}" MATCHES ".*cctools.+([0-9.]+).*")
111
- set(${result_var}
112
- TRUE
113
- PARENT_SCOPE)
114
- else()
+ if(NOT "${libtool_version}" MATCHES ".*cctools.+([0-9.]+).*")
115
set(${result_var}
116
FALSE
117
PARENT_SCOPE)
0 commit comments