Skip to content

Commit 2aaea00

Browse files
authored
GH-46684: [C++] Fix Meson configuration issue on Windows (#46685)
### Rationale for this change This fixes an issue with the Meson configuration on Windows ### What changes are included in this PR? Fix up incorrect variable name usage ### Are these changes tested? Yes ### Are there any user-facing changes? No * GitHub Issue: #46684 Authored-by: Will Ayd <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent d7119ba commit 2aaea00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/src/arrow/util/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,9 @@ if host_machine.system() == 'windows'
246246
# This manifest enables long file paths on Windows 10+
247247
# See https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#enable-long-paths-in-windows-10-version-1607-and-later
248248
if cpp_compiler.get_id() == 'msvc'
249-
utility_test_sources += ['io_util_test.manifest']
249+
utility_test_srcs += ['io_util_test.manifest']
250250
else
251-
utility_test_sources += ['io_util_test.rc']
251+
utility_test_srcs += ['io_util_test.rc']
252252
endif
253253
endif
254254

0 commit comments

Comments
 (0)