summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/externalsrc.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass
index 70e6fd76b3..f7ed66d8c6 100644
--- a/meta/classes/externalsrc.bbclass
+++ b/meta/classes/externalsrc.bbclass
@@ -73,7 +73,8 @@ python () {
73 73
74 fetch_tasks = ['do_fetch', 'do_unpack'] 74 fetch_tasks = ['do_fetch', 'do_unpack']
75 # If we deltask do_patch, there's no dependency to ensure do_unpack gets run, so add one 75 # If we deltask do_patch, there's no dependency to ensure do_unpack gets run, so add one
76 d.appendVarFlag('do_configure', 'deps', ['do_unpack']) 76 # Note that we cannot use d.appendVarFlag() here because deps is expected to be a list object, not a string
77 d.setVarFlag('do_configure', 'deps', (d.getVarFlag('do_configure', 'deps', False) or []) + ['do_unpack'])
77 78
78 for task in d.getVar("SRCTREECOVEREDTASKS", True).split(): 79 for task in d.getVar("SRCTREECOVEREDTASKS", True).split():
79 if local_srcuri and task in fetch_tasks: 80 if local_srcuri and task in fetch_tasks: