diff options
Diffstat (limited to 'bitbake/lib/bb/cookerdata.py')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index 24002b879f..d6206b7319 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -399,6 +399,8 @@ class CookerDataBuilder(object): | |||
399 | if c in collections_tmp: | 399 | if c in collections_tmp: |
400 | bb.fatal("Found duplicated BBFILE_COLLECTIONS '%s', check bblayers.conf or layer.conf to fix it." % c) | 400 | bb.fatal("Found duplicated BBFILE_COLLECTIONS '%s', check bblayers.conf or layer.conf to fix it." % c) |
401 | compat = set((data.getVar("LAYERSERIES_COMPAT_%s" % c) or "").split()) | 401 | compat = set((data.getVar("LAYERSERIES_COMPAT_%s" % c) or "").split()) |
402 | if compat and not layerseries: | ||
403 | bb.fatal("No core layer found to work with layer '%s'. Missing entry in bblayers.conf?" % c) | ||
402 | if compat and not (compat & layerseries): | 404 | if compat and not (compat & layerseries): |
403 | bb.fatal("Layer %s is not compatible with the core layer which only supports these series: %s (layer is compatible with %s)" | 405 | bb.fatal("Layer %s is not compatible with the core layer which only supports these series: %s (layer is compatible with %s)" |
404 | % (c, " ".join(layerseries), " ".join(compat))) | 406 | % (c, " ".join(layerseries), " ".join(compat))) |