From: Ronan Le Martret Date: Mon, 13 Nov 2017 15:57:03 +0000 (+0100) Subject: Fix pulseaudio service start X-Git-Tag: 4.99.3~12 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=AGL%2Fmeta-agl-demo.git;a=commitdiff_plain;h=f2f5947688849550a7aea5db3469994455f4f73e Fix pulseaudio service start char \n is not recognized in the file default.pa Bug-AGL: SPEC-1084 Change-Id: I08f9857041dff37d3259583736554099fb2f919a Signed-off-by: Ronan Le Martret --- diff --git a/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend b/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend index 5b779b765..88cd4504f 100644 --- a/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend +++ b/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend @@ -1,4 +1,4 @@ # Add .include directive to default.pa so optional configuration can be added do_install_append () { - echo -n "\n.include ${sysconfdir}/pulse/default.d\n" >> ${D}${sysconfdir}/pulse/default.pa + echo -e -n "\n.include ${sysconfdir}/pulse/default.d\n" >> ${D}${sysconfdir}/pulse/default.pa }