kou commented on code in PR #13311: URL: https://github.com/apache/arrow/pull/13311#discussion_r926196087
########## cpp/cmake_modules/FindArrowPython.cmake: ########## @@ -46,8 +46,9 @@ endif() find_package(Arrow ${find_package_arguments}) if(ARROW_FOUND) + message(STATUS "PYARROW_CPP_HOME: ${PYARROW_CPP_HOME}") Review Comment: I don't think that it's customary. I'll rewrite or remove all our `Find*.cmake` in ARROW-12175. So we don't need to care much about `Find*.cmake` files here. FYI, 33/160(20%) CMake's bundled `Find*.cmake` shows `STATUS` message: ```bash n_statuses=0 n_finds=0 for find_cmake in /usr/share/cmake-3.23/Modules/Find*.cmake; do n_finds=$(($n_finds + 1)) grep -q STATUS $find_cmake && n_statuses=$(($n_statuses + 1)) done echo "$n_statuses/$n_finds ($(($n_statuses / ($n_finds + 0.0))))" # => 33/160 (0.20624999999999999) ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org