summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 2c1714da9d..cc36b84781 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -698,6 +698,8 @@ class RunQueueData:
698 frommc = mcdependency[1] 698 frommc = mcdependency[1]
699 mcdep = mcdependency[2] 699 mcdep = mcdependency[2]
700 deptask = mcdependency[4] 700 deptask = mcdependency[4]
701 if mcdep not in taskData:
702 bb.fatal("Multiconfig '%s' is referenced in multiconfig dependency '%s' but not enabled in BBMULTICONFIG?" % (mcdep, dep))
701 if mc == frommc: 703 if mc == frommc:
702 fn = taskData[mcdep].build_targets[pn][0] 704 fn = taskData[mcdep].build_targets[pn][0]
703 newdep = '%s:%s' % (fn,deptask) 705 newdep = '%s:%s' % (fn,deptask)