[oe-commits] [openembedded-core] 01/02: image.bbclass: fix a wrong position blank

git at git.openembedded.org git at git.openembedded.org
Sat Nov 24 21:40:22 UTC 2018


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 6085023158ffbfbaf0f3d65ef18054c003d3f463
Author: Ming Liu <liu.ming50 at gmail.com>
AuthorDate: Sat Nov 24 13:54:05 2018 +0100

    image.bbclass: fix a wrong position blank
    
    A flaw was introduced by commit c5fa6034:
    [ image.bbclass: use prependVarFlag for postfuncs ]
    
    it changed to use prependVarFlag instead of appendVarFlag, then the
    blank also needs change to adapt it.
    
    Signed-off-by: Ming Liu <liu.ming50 at gmail.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 5a07491..276d0d3 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -497,7 +497,7 @@ python () {
         d.setVarFlag(task, 'fakeroot', '1')
 
         d.appendVarFlag(task, 'prefuncs', ' ' + debug + ' set_image_size')
-        d.prependVarFlag(task, 'postfuncs', ' create_symlinks')
+        d.prependVarFlag(task, 'postfuncs', 'create_symlinks ')
         d.appendVarFlag(task, 'subimages', ' ' + ' '.join(subimages))
         d.appendVarFlag(task, 'vardeps', ' ' + ' '.join(vardeps))
         d.appendVarFlag(task, 'vardepsexclude', ' DATETIME DATE ' + ' '.join(vardepsexclude))

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


More information about the Openembedded-commits mailing list