Skip to content

Commit

Permalink
Fix Apple libtool detection in bundle_static (#8495)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreinking authored Dec 3, 2024
1 parent 435fb23 commit 53619a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/BundleStatic.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ endfunction()

function(_bundle_static_is_apple_libtool result_var item)
_bundle_static_check_output(version_info "${item}" -V)
if (NOT version_info MATCHES "Apple, Inc.")
if (NOT version_info MATCHES "Apple,? Inc\\.")
set(${result_var} 0 PARENT_SCOPE)
endif ()
endfunction()
Expand Down

0 comments on commit 53619a4

Please sign in to comment.