[oe-commits] [openembedded-core] 04/04: image.bbclass: fix setting of vardeps flag

git at git.openembedded.org git at git.openembedded.org
Wed Jun 14 09:30:15 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 4417a4c93664deeef1365f6d754caede2d44e8e1
Author: Ed Bartosh <ed.bartosh at linux.intel.com>
AuthorDate: Wed Jun 14 12:07:06 2017 +0300

    image.bbclass: fix setting of vardeps flag
    
    Added leading space to vardeps to avoid flag value to be
    added to the existing value without a separator.
    
    Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/image.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index e18ac72..9a04b43 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -500,7 +500,7 @@ python () {
         d.appendVarFlag(task, 'prefuncs', ' ' + debug + ' set_image_size')
         d.appendVarFlag(task, 'postfuncs', ' create_symlinks')
         d.appendVarFlag(task, 'subimages', ' ' + ' '.join(subimages))
-        d.appendVarFlag(task, 'vardeps', ' '.join(vardeps))
+        d.appendVarFlag(task, 'vardeps', ' ' + ' '.join(vardeps))
         d.appendVarFlag(task, 'vardepsexclude', 'DATETIME')
 
         bb.debug(2, "Adding task %s before %s, after %s" % (task, 'do_image_complete', after))

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list