WillAyd opened a new issue, #46684:
URL: https://github.com/apache/arrow/issues/46684

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   Found through the WrapDB CI - looks like there is a typo in the 
arrow/util/meson.build config where the code reads as:
   
   ```
   if host_machine.system() == 'windows'
       # This manifest enables long file paths on Windows 10+
       # See 
https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#enable-long-paths-in-windows-10-version-1607-and-later
       if cpp_compiler.get_id() == 'msvc'
           utility_test_sources += ['io_util_test.manifest']
       else
           utility_test_sources += ['io_util_test.rc']
       endif
   endif
   
   exc = executable(
       'arrow-utility-test',
       sources: utility_test_srcs,
       dependencies: [arrow_dep, filesystem_dep, gtest_dep, gmock_dep],
       link_with: [arrow_test_lib],
       implicit_include_directories: false,
   )
   ```
   
   The windows branch should use the variable name `utility_test_srcs` instead 
of `utility_test_sources`
   
   ### Component(s)
   
   C++


-- 
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: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to