Copilot commented on code in PR #50195:
URL: https://github.com/apache/arrow/pull/50195#discussion_r3976624394
##########
c_glib/arrow-glib/meson.build:
##########
@@ -225,6 +225,9 @@ if not gio.found()
gio = dependency('gio-2.0')
endif
dependencies = [arrow_acero, arrow_compute, arrow, gobject, gio]
+if arrow_s3.found()
+ dependencies += arrow_s3
+endif
Review Comment:
`dependencies` is an array, but `dependencies += arrow_s3` attempts to add a
single dependency object (not a list). In Meson, array concatenation expects
another array; this will error at configure time. Wrap the dependency in a list
when appending.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]