From: Tanu Kaskinen Date: Mon, 21 Dec 2020 13:51:08 +0000 (+0200) Subject: pulseaudio: fix client.conf location X-Git-Tag: uninative-2.10~409 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=16d31a54c586840fb11e03702bb854c43ce4c5eb;p=openembedded-core.git pulseaudio: fix client.conf location The location of the generated client.conf changed when switching from Autotools to Meson. Fixes this error when enabling autospawn-for-root: sed: can't read src/client.conf: No such file or directory Signed-off-by: Tanu Kaskinen Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc index cf4be7ed40..e40b8c1c40 100644 --- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc @@ -133,7 +133,7 @@ set_cfg_value () { do_compile_append () { if ${@bb.utils.contains('PACKAGECONFIG', 'autospawn-for-root', 'true', 'false', d)}; then - set_cfg_value src/client.conf allow-autospawn-for-root yes + set_cfg_value src/pulse/client.conf allow-autospawn-for-root yes fi }