diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-10 22:48:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-14 22:30:56 +0000 |
commit | 48aad516c24fe38b5d6c7c97350f1ff87084e0db (patch) | |
tree | 752fd8ae1cfe132050c2c57b1d42847590ca5f8e /meta/classes/populate_sdk_ext.bbclass | |
parent | 98dcdcb47c7fd797761703ea27092b4ca2558d62 (diff) | |
download | poky-48aad516c24fe38b5d6c7c97350f1ff87084e0db.tar.gz |
populate_sdk_ext/sign_rpm/sign_package_feed: Add missing getVar parameter
We should always pass a parameter to getVar, add missing default value.
(From OE-Core rev: 31bc0a46a97d7dc98568a218c077c31d8b11dbd9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 8601c78410..802cbe1abe 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -144,7 +144,7 @@ python copy_buildsystem () { | |||
144 | f.write('CONF_VERSION = "%s"\n\n' % d.getVar('CONF_VERSION', False)) | 144 | f.write('CONF_VERSION = "%s"\n\n' % d.getVar('CONF_VERSION', False)) |
145 | 145 | ||
146 | # Some classes are not suitable for SDK, remove them from INHERIT | 146 | # Some classes are not suitable for SDK, remove them from INHERIT |
147 | f.write('INHERIT_remove = "%s"\n' % d.getVar('SDK_INHERIT_BLACKLIST')) | 147 | f.write('INHERIT_remove = "%s"\n' % d.getVar('SDK_INHERIT_BLACKLIST', False)) |
148 | 148 | ||
149 | # Bypass the default connectivity check if any | 149 | # Bypass the default connectivity check if any |
150 | f.write('CONNECTIVITY_CHECK_URIS = ""\n\n') | 150 | f.write('CONNECTIVITY_CHECK_URIS = ""\n\n') |