From: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Date: Wed, 28 Dec 2016 18:15:54 +0000 (+0100)
Subject: Fix whitespace in aglwgt bbclass
X-Git-Tag: 3.99.1~104^2^2~22
X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=2a3bbd117220b55682f95dd527f9971f3efdcd82;p=AGL%2Fmeta-agl.git

Fix whitespace in aglwgt bbclass

This change fixes an issue in the aglwgt bbclass use of
FILES_${PN} that lead to a missing inclusion of the *.wgt file.

Change-Id: I4ec8485e9f375f3e9278310381b270b0d3647f62
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
---

diff --git a/meta-app-framework/classes/aglwgt.bbclass b/meta-app-framework/classes/aglwgt.bbclass
index f7da1e401..734e979c5 100644
--- a/meta-app-framework/classes/aglwgt.bbclass
+++ b/meta-app-framework/classes/aglwgt.bbclass
@@ -31,7 +31,7 @@ do_aglwgt_deploy() {
         install -m 0644 ${B}/package/*.wgt ${D}/usr/AGL/apps/
 }
 
-FILES_${PN} += " /usr/AGL/apps/*.wgt "
+FILES_${PN} += "/usr/AGL/apps/*.wgt"
 
 addtask aglwgt_package before do_build after do_compile
 addtask aglwgt_deploy  before do_build after do_install
\ No newline at end of file