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

git at git.openembedded.org git at git.openembedded.org
Tue Jan 8 20:19:42 UTC 2019


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

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

commit 0e62a5a6e2d3c453dc7e970fd497e050a9e17c7a
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.
    
    (From OE-Core rev: 6085023158ffbfbaf0f3d65ef18054c003d3f463)
    
    Signed-off-by: Ming Liu <liu.ming50 at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 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 452b1ad..2ff574b 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