From 5e48a2afc1af119d05a30e8736b779a829e57ccb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Fri, 3 Nov 2023 03:24:23 +0100 Subject: [PATCH] meson.build: set `WIREPLUMBER_CONFIG_DIR` in devenv This is needed for wireplumber to start up correctly in the meson devenv when built as a subproject of pipewire. The reason for this is that the value set for `PIPEWIRE_CONFIG_DIR` in the wireplumber meson build file will be overriden when the pipewire meson files set up another devenv with its own `PIPEWIRE_CONFIG_DIR`. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 591ec8ff..b1db5772 100644 --- a/meson.build +++ b/meson.build @@ -169,7 +169,7 @@ wireplumber_uninstalled = custom_target('wp-uninstalled', devenv = environment({ 'WIREPLUMBER_MODULE_DIR': builddir / 'modules', - 'PIPEWIRE_CONFIG_DIR': srcdir / 'src' / 'config', + 'WIREPLUMBER_CONFIG_DIR': srcdir / 'src' / 'config', 'WIREPLUMBER_DATA_DIR': srcdir / 'src', })