This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 4b20e70ad0 GH-34622: [CI][GLib] Use "meson setup ..." (#34623)
4b20e70ad0 is described below
commit 4b20e70ad0513e22d05205342eafc1baedffbf71
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sat Mar 18 07:52:16 2023 +0900
GH-34622: [CI][GLib] Use "meson setup ..." (#34623)
### Rationale for this change
Because "meson ..." is deprecated.
### What changes are included in this PR?
Use "meson setup ..." instead.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* Closes: #34622
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
ci/scripts/c_glib_build.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ci/scripts/c_glib_build.sh b/ci/scripts/c_glib_build.sh
index fb61466453..6e3e33afb1 100755
--- a/ci/scripts/c_glib_build.sh
+++ b/ci/scripts/c_glib_build.sh
@@ -36,7 +36,8 @@ export CXXFLAGS="-DARROW_NO_DEPRECATED_API"
mkdir -p ${build_dir}
# Build with Meson
-meson --prefix=$ARROW_HOME \
+meson setup \
+ --prefix=$ARROW_HOME \
--libdir=lib \
-Dgtk_doc=${with_gtk_doc} \
-Dvapi=${ARROW_GLIB_VAPI} \