[oe-commits] [openembedded-core] branch morty updated: image: Fix previous broken commit to set expand parameter to getVar

git at git.openembedded.org git at git.openembedded.org
Sun Jan 21 09:18:57 UTC 2018


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

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

The following commit(s) were added to refs/heads/morty by this push:
     new eb5ca67  image: Fix previous broken commit to set expand parameter to getVar
eb5ca67 is described below

commit eb5ca672c793e7c2151e7f2fef26e0c25130d840
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Jan 21 00:00:54 2018 +0000

    image: Fix previous broken commit to set expand parameter to getVar
    
    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 3e6b6e1..92b09ab 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -440,7 +440,7 @@ python () {
         # date/time values. It will get expanded at execution time.
         # Similarly TMPDIR since otherwise we see QA stamp comparision problems
         # Expand PV else it can trigger get_srcrev which can fail due to these variables being unset
-        localdata.setVar('PV', d.getVar('PV'))
+        localdata.setVar('PV', d.getVar('PV', True))
         localdata.delVar('DATETIME')
         localdata.delVar('TMPDIR')
 

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


More information about the Openembedded-commits mailing list