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 /build-scripts/aur | |
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
Diffstat (limited to 'build-scripts/aur')
-rw-r--r-- | build-scripts/aur/PKGBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
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 } |