summaryrefslogtreecommitdiffstats
path: root/ci/build-macos.sh
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2022-10-28 21:40:53 -0500
committerDudemanguy <random342@airmail.cc>2022-10-29 17:55:33 +0000
commit6ebc4928c52f14a762a2872e4960289cade364e5 (patch)
treed80acc385c6dc82dfe9e3856af7ef78a1b11d55f /ci/build-macos.sh
parent89bd6ead6c6f710c42ce2f6f4c5abdb157090761 (diff)
downloadmpv-6ebc4928c52f14a762a2872e4960289cade364e5.tar.bz2
mpv-6ebc4928c52f14a762a2872e4960289cade364e5.tar.xz
ci: use meson setup build instead of meson build
The old "meson build" build command was actually deprecated a few months ago*. It turns out that you're supposed to use "meson setup build" instead which has been around for years. Go ahead and be a good citizen and update this in the CI. Also replace any mention of "meson build" with "meson setup build" in the documentation as well and change the one random hardcoded string we have in meson.build to "meson configure build" (might as well). *: https://github.com/mesonbuild/meson/commit/3c7ab542c0c4770241eae149b0d4cd8de329aee0
Diffstat (limited to 'ci/build-macos.sh')
-rwxr-xr-xci/build-macos.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build-macos.sh b/ci/build-macos.sh
index 6e6456c154..938eff7251 100755
--- a/ci/build-macos.sh
+++ b/ci/build-macos.sh
@@ -12,7 +12,7 @@ fi
if [[ $1 = "meson" ]]; then
PKG_CONFIG_PATH="${FFMPEG_SYSROOT}/lib/pkgconfig/" CC="${CC}" CXX="${CXX}" \
- meson build \
+ meson setup build \
-Dprefix="${MPV_INSTALL_PREFIX}" \
-Dlibmpv=true \
-D{gl,iconv,lcms2,lua,jpeg,plain-gl,zlib}=enabled \