Fix deprecated meson commands

This commit is contained in:
Richard Hughes 2022-12-23 10:55:53 +00:00
parent 67deecde31
commit 02d17592b2
8 changed files with 8 additions and 8 deletions

View File

@ -39,7 +39,7 @@ jobs:
run: |
mkdir -p $GITHUB_WORKSPACE/build
cd $GITHUB_WORKSPACE/build
meson .. -Dman=false -Defi_binary=false -Dplugin_uefi_capsule_splash=false --prefix=$GITHUB_WORKSPACE/dist
meson setup .. -Dman=false -Defi_binary=false -Dplugin_uefi_capsule_splash=false --prefix=$GITHUB_WORKSPACE/dist
ninja
- name: Perform CodeQL Analysis

View File

@ -1,6 +1,6 @@
#!/bin/sh
meson ../ \
meson setup ../ \
-Dauto_features=disabled \
-Dbash_completion=false \
-Dcompat_cli=false \

View File

@ -12,7 +12,7 @@ if [ ! -f /usr/share/mingw/toolchain-mingw64.meson ]; then
fi
# try to keep this and ../contrib/ci/build_windows.sh in sync as much as makes sense
meson .. \
meson setup .. \
--cross-file=/usr/share/mingw/toolchain-mingw64.meson \
--cross-file=../contrib/mingw64.cross \
--prefix=/ \

View File

@ -3,7 +3,7 @@ set -e
set -x
mkdir -p build-macos && cd build-macos
meson .. \
meson setup .. \
-Dbuild=standalone \
-Dsoup_session_compat=false \
-Dgusb:docs=false \

View File

@ -33,7 +33,7 @@ rm -rf $DESTDIR $build
# try to keep this and ../contrib/build-windows.sh in sync as much as makes sense
mkdir -p $build $DESTDIR && cd $build
meson .. \
meson setup .. \
--cross-file=/usr/share/mingw/toolchain-mingw64.meson \
--cross-file=../contrib/mingw64.cross \
--prefix=/ \

View File

@ -9,7 +9,7 @@ set -x
rm -rf build
mkdir -p build
cd build
meson .. \
meson setup .. \
--werror \
-Dplugin_uefi_capsule=disabled \
-Dplugin_dell=disabled \

View File

@ -14,7 +14,7 @@ rm -rf build
mkdir -p build
cp contrib/ci/s390x_cross.txt build/
cd build
meson .. \
meson setup .. \
--cross-file s390x_cross.txt \
--werror \
-Dplugin_flashrom=disabled \

View File

@ -16,7 +16,7 @@ if [ "$QUBES" = "true" ]; then
QUBES_MACRO=(--define "qubes_packages 1")
fi
meson .. \
meson setup .. \
-Ddocs=disabled \
-Dman=true \
-Dtests=true \