summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 19ddc1d3ba..f6abc63487 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1614,7 +1614,7 @@ class BBCooker:
1614 raise NothingToBuild 1614 raise NothingToBuild
1615 1615
1616 ignore = (self.data.getVar("ASSUME_PROVIDED") or "").split() 1616 ignore = (self.data.getVar("ASSUME_PROVIDED") or "").split()
1617 for pkg in pkgs_to_build: 1617 for pkg in pkgs_to_build.copy():
1618 if pkg in ignore: 1618 if pkg in ignore:
1619 parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg) 1619 parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg)
1620 if pkg.startswith("multiconfig:"): 1620 if pkg.startswith("multiconfig:"):