From 5cfdc2620c8ae654775a6237e3ea88e02d3594b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Thu, 14 Oct 2021 21:41:10 +0200 Subject: [PATCH] meson.build: set `MEDIA_SESSION_CONFIG_DIR` in devenv Commit 6c156cdbb4a33604c85c74323674d5fd27eb050f made pw-uninstalled.sh export the MEDIA_SESSION_CONFIG_DIR environmental variable, its value being the location of the media-session configuration files in the build directory. Export this environtmental variable in the meson devenv as well. Fixes: 6c156cdbb4a3 ("media-session: move the media-session config files to here") --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index f2370e4a9..58e3e1b4a 100644 --- a/meson.build +++ b/meson.build @@ -491,6 +491,8 @@ if meson.version().version_compare('>=0.58.0') devenv.set('PIPEWIRE_CONFIG_DIR', builddir / 'src' / 'daemon') devenv.set('PIPEWIRE_MODULE_DIR', builddir / 'src' / 'modules') + devenv.set('MEDIA_SESSION_CONFIG_DIR', builddir / 'src' / 'media-session' / 'media-session.d') + devenv.set('SPA_PLUGIN_DIR', builddir / 'spa' / 'plugins') devenv.set('SPA_DATA_DIR', srcdir / 'spa' / 'plugins')