summaryrefslogtreecommitdiffstats
path: root/meta/classes/sign_package_feed.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-10 22:48:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-14 22:30:56 +0000
commit48aad516c24fe38b5d6c7c97350f1ff87084e0db (patch)
tree752fd8ae1cfe132050c2c57b1d42847590ca5f8e /meta/classes/sign_package_feed.bbclass
parent98dcdcb47c7fd797761703ea27092b4ca2558d62 (diff)
downloadpoky-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/sign_package_feed.bbclass')
-rw-r--r--meta/classes/sign_package_feed.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sign_package_feed.bbclass b/meta/classes/sign_package_feed.bbclass
index 4263810028..d89bc0b195 100644
--- a/meta/classes/sign_package_feed.bbclass
+++ b/meta/classes/sign_package_feed.bbclass
@@ -24,7 +24,7 @@ python () {
24 24
25 # Set expected location of the public key 25 # Set expected location of the public key
26 d.setVar('PACKAGE_FEED_GPG_PUBKEY', 26 d.setVar('PACKAGE_FEED_GPG_PUBKEY',
27 os.path.join(d.getVar('STAGING_ETCDIR_NATIVE'), 27 os.path.join(d.getVar('STAGING_ETCDIR_NATIVE', False),
28 'PACKAGE-FEED-GPG-PUBKEY')) 28 'PACKAGE-FEED-GPG-PUBKEY'))
29} 29}
30 30