summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 a0e282b854..1d5e5f66c2 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1192,6 +1192,9 @@ class BBCooker:
1192 1192
1193 def checkPackages(self, pkgs_to_build): 1193 def checkPackages(self, pkgs_to_build):
1194 1194
1195 # Return a copy, don't modify the original
1196 pkgs_to_build = pkgs_to_build[:]
1197
1195 if len(pkgs_to_build) == 0: 1198 if len(pkgs_to_build) == 0:
1196 raise NothingToBuild 1199 raise NothingToBuild
1197 1200