diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2020-12-21 15:51:08 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-21 22:29:57 +0000 |
commit | 26e04aa138750d22e303a772cacd628adc2c5f2f (patch) | |
tree | 547eeaba5514e725f12d9e085367b2819ebd78dd | |
parent | 41bb5e7cb7ef0ed8a270971444de469db80dadaa (diff) | |
download | poky-26e04aa138750d22e303a772cacd628adc2c5f2f.tar.gz |
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
(From OE-Core rev: 16d31a54c586840fb11e03702bb854c43ce4c5eb)
Signed-off-by: Tanu Kaskinen <tanuk@iki.fi>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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 () { | |||
133 | 133 | ||
134 | do_compile_append () { | 134 | do_compile_append () { |
135 | if ${@bb.utils.contains('PACKAGECONFIG', 'autospawn-for-root', 'true', 'false', d)}; then | 135 | if ${@bb.utils.contains('PACKAGECONFIG', 'autospawn-for-root', 'true', 'false', d)}; then |
136 | set_cfg_value src/client.conf allow-autospawn-for-root yes | 136 | set_cfg_value src/pulse/client.conf allow-autospawn-for-root yes |
137 | fi | 137 | fi |
138 | } | 138 | } |
139 | 139 | ||