diff options
author | 2017-02-24 15:39:55 -0700 | |
---|---|---|
committer | 2017-03-15 16:53:55 +0100 | |
commit | 1098ec6306284551ce17b69899ef085e339addb2 (patch) | |
tree | cf2c1e74d8d21fa985d381c1a5d9bdfddd59bd62 /classes/swupd-image.bbclass | |
parent | 18168eb8555d9d41f3fe036fcdc0e042f99c56c2 (diff) | |
download | meta-swupd-1098ec6306284551ce17b69899ef085e339addb2.tar.gz meta-swupd-1098ec6306284551ce17b69899ef085e339addb2.tar.bz2 meta-swupd-1098ec6306284551ce17b69899ef085e339addb2.zip |
Add "True" to d.getVar() to avoid forking a little while longer.
This got broken in commit c63e8c0d95604ee5 "swupd-image.bbclass: dont fail parsing if SWUPD_BUNDLES is undefined"
Signed-off-by: Aaron Zinghini <aaron.zinghini@seeingmachines.com>
Diffstat (limited to 'classes/swupd-image.bbclass')
-rw-r--r-- | classes/swupd-image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/swupd-image.bbclass b/classes/swupd-image.bbclass index f55b5d6..0950258 100644 --- a/classes/swupd-image.bbclass +++ b/classes/swupd-image.bbclass @@ -249,7 +249,7 @@ addtask stage_swupd_inputs after do_swupd_list_bundle before do_swupd_update do_stage_swupd_inputs[dirs] = "${SWUPDIMAGEDIR} ${SWUPDMANIFESTDIR} ${DEPLOY_DIR_SWUPD}/maps/" do_stage_swupd_inputs[depends] += " \ virtual/fakeroot-native:do_populate_sysroot \ - ${@ ' '.join(['bundle-${SWUPD_IMAGE_PN}-%s:do_swupd_list_bundle' % x for x in (d.getVar('SWUPD_BUNDLES') or '').split()]) } \ + ${@ ' '.join(['bundle-${SWUPD_IMAGE_PN}-%s:do_swupd_list_bundle' % x for x in (d.getVar('SWUPD_BUNDLES', True) or '').split()]) } \ " python do_fetch_swupd_inputs () { |