diff options
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index e527e23114..d90bd3945f 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1592,7 +1592,7 @@ class BBCooker: | |||
1592 | raise NothingToBuild | 1592 | raise NothingToBuild |
1593 | 1593 | ||
1594 | ignore = (self.data.getVar("ASSUME_PROVIDED") or "").split() | 1594 | ignore = (self.data.getVar("ASSUME_PROVIDED") or "").split() |
1595 | for pkg in pkgs_to_build: | 1595 | for pkg in pkgs_to_build.copy(): |
1596 | if pkg in ignore: | 1596 | if pkg in ignore: |
1597 | parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg) | 1597 | parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg) |
1598 | if pkg.startswith("multiconfig:"): | 1598 | if pkg.startswith("multiconfig:"): |