From 5de56928e0fe43f02005552eee058de57ffb2682 Mon Sep 17 00:00:00 2001 From: Diana Sulmone Date: Mon, 24 Apr 2023 10:55:04 -0500 Subject: [PATCH] MINOR: [C++] Fixed bundled dependency comment in ThirdpartyToolchain.cmake (#34990) Updated comment to the correct filename - I was confused when I saw this comment in the code which had incorrectly named the output bundled dependency lib file. Authored-by: Diana Sulmone Signed-off-by: Will Jones --- cpp/cmake_modules/ThirdpartyToolchain.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake index b5f9716722d0f..a67b87e5a3e10 100644 --- a/cpp/cmake_modules/ThirdpartyToolchain.cmake +++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake @@ -24,9 +24,9 @@ add_custom_target(toolchain-benchmarks) add_custom_target(toolchain-tests) # Accumulate all bundled targets and we will splice them together later as -# libarrow_dependencies.a so that third party libraries have something usable -# to create statically-linked builds with some BUNDLED dependencies, including -# allocators like jemalloc and mimalloc +# libarrow_bundled_dependencies.a so that third party libraries have something +# usable to create statically-linked builds with some BUNDLED dependencies, +# including allocators like jemalloc and mimalloc set(ARROW_BUNDLED_STATIC_LIBS) # Accumulate all system dependencies to provide suitable static link