From 0638fd8763b023db67391dc580a8fd97d9d14ae7 Mon Sep 17 00:00:00 2001 From: Y Date: Thu, 20 Oct 2022 16:09:04 -0400 Subject: [PATCH] Fix typo in variable `ABSL_VENDORED` Which prevents `libarrow_bundled_dependencies` to contain all required symbols. --- cpp/cmake_modules/ThirdpartyToolchain.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake index adc620368eb..78ca2761b05 100644 --- a/cpp/cmake_modules/ThirdpartyToolchain.cmake +++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake @@ -3900,7 +3900,7 @@ macro(build_grpc) gRPC::grpc gRPC::grpcpp_for_bundling gRPC::upb) - if(ABS_VENDORED) + if(ABSL_VENDORED) list(APPEND ARROW_BUNDLED_STATIC_LIBS ${GRPC_GPR_ABSL_LIBRARIES}) endif() endmacro()