raulcd commented on code in PR #48092:
URL: https://github.com/apache/arrow/pull/48092#discussion_r2539189541


##########
cpp/cmake_modules/ThirdpartyToolchain.cmake:
##########
@@ -3136,7 +3171,9 @@ function(build_absl)
     # This is due to upstream absl::cctz issue
     # https://github.com/abseil/abseil-cpp/issues/283
     find_library(CoreFoundation CoreFoundation)
-    set_property(TARGET absl::time
+    # When ABSL_ENABLE_INSTALL is ON, the real target is "time" not "absl_time"
+    # Cannot use set_property on alias targets (absl::time is an alias)
+    set_property(TARGET time

Review Comment:
   This is not required for c-ares but a bug fix required for macOS abseil as 
seen on some R failures



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to