diff options
author | Ben <[email protected]> | 2023-11-26 00:53:46 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-25 11:53:46 -0500 |
commit | ab6dc54e6af7253570d74d0f221d3cf4a1a11423 (patch) | |
tree | d7af7f64ea959231d832674575bf1377ef3f4a06 | |
parent | 9cd02fc480b017383cf564befe224c7127bf9a54 (diff) |
fix: aur build failed: sd-bus-provider set to auto (#240)
> swayfx/meson.build:92:2: ERROR: Assert failed: sd-bus-provider must
not be set to auto since auto_features != auto
-rw-r--r-- | build-scripts/aur-git/PKGBUILD | 3 | ||||
-rw-r--r-- | build-scripts/aur/PKGBUILD | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/build-scripts/aur-git/PKGBUILD b/build-scripts/aur-git/PKGBUILD index 116f839b..69631508 100644 --- a/build-scripts/aur-git/PKGBUILD +++ b/build-scripts/aur-git/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Erik Reider <[email protected]> _pkgname=swayfx pkgname="$_pkgname-git" -pkgver=r6930.94ebb45e +pkgver=r7023.9cd02fc4 pkgrel=1 license=("MIT") pkgdesc="SwayFX: Sway, but with eye candy!" @@ -60,6 +60,7 @@ build() { export PKG_CONFIG_PATH='/usr/lib/wlroots0.16/pkgconfig' arch-meson \ -Dwerror=false \ + -Dsd-bus-provider=libsystemd \ "$_pkgname" build meson compile -C build } diff --git a/build-scripts/aur/PKGBUILD b/build-scripts/aur/PKGBUILD index 7eec95c1..ef6f8e2a 100644 --- a/build-scripts/aur/PKGBUILD +++ b/build-scripts/aur/PKGBUILD @@ -55,6 +55,7 @@ build() { export PKG_CONFIG_PATH='/usr/lib/wlroots0.16/pkgconfig' arch-meson \ -Dwerror=false \ + -Dsd-bus-provider=libsystemd \ "${_pkgname}-${pkgver}" build meson compile -C build } |