diff options
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 18e9bb8711..97863e517a 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -253,7 +253,9 @@ class BBCooker: | |||
253 | localdata = data.createCopy(self.configuration.data) | 253 | localdata = data.createCopy(self.configuration.data) |
254 | bb.data.update_data(localdata) | 254 | bb.data.update_data(localdata) |
255 | bb.data.expandKeys(localdata) | 255 | bb.data.expandKeys(localdata) |
256 | taskdata = bb.taskdata.TaskData(self.configuration.abort) | 256 | # We set abort to False here to prevent unbuildable targets raising |
257 | # an exception when we're just generating data | ||
258 | taskdata = bb.taskdata.TaskData(False) | ||
257 | 259 | ||
258 | runlist = [] | 260 | runlist = [] |
259 | for k in pkgs_to_build: | 261 | for k in pkgs_to_build: |