Fix whitespace in aglwgt bbclass
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>
Wed, 28 Dec 2016 18:15:54 +0000 (19:15 +0100)
committerStephane Desneux <stephane.desneux@iot.bzh>
Mon, 27 Mar 2017 13:33:39 +0000 (15:33 +0200)
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>
meta-app-framework/classes/aglwgt.bbclass

index f7da1e4..734e979 100644 (file)
@@ -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