summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cooker.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 855a180523..e0cbed5378 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1600,6 +1600,9 @@ class BBCooker:
1600 for pkg in pkgs_to_build: 1600 for pkg in pkgs_to_build:
1601 if pkg in ignore: 1601 if pkg in ignore:
1602 parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg) 1602 parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg)
1603 if pkg.startswith("multiconfig:"):
1604 pkgs_to_build.remove(pkg)
1605 pkgs_to_build.append(pkg.replace("multiconfig:", "mc:"))
1603 1606
1604 if 'world' in pkgs_to_build: 1607 if 'world' in pkgs_to_build:
1605 pkgs_to_build.remove('world') 1608 pkgs_to_build.remove('world')