From 8fee80eeb82cb1ba8cd9a88779f2e7a8b247fed4 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 10 Jun 2025 16:00:38 +0900 Subject: [PATCH] GH-46764: [C++][Gandiva] Fix wrong `.bc` depends --- cpp/cmake_modules/GandivaAddBitcode.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/cmake_modules/GandivaAddBitcode.cmake b/cpp/cmake_modules/GandivaAddBitcode.cmake index 98847f8a186..6b5e5b3e60c 100644 --- a/cpp/cmake_modules/GandivaAddBitcode.cmake +++ b/cpp/cmake_modules/GandivaAddBitcode.cmake @@ -71,5 +71,5 @@ function(gandiva_add_bitcode SOURCE) endif() add_custom_command(OUTPUT ${BC_FILE} COMMAND ${PRECOMPILE_COMMAND} - DEPENDS ${SOURCE_FILE}) + DEPENDS ${SOURCE}) endfunction()