summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 7854742d4a..d0ac6bd677 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -166,13 +166,11 @@ class HobHandler(gobject.GObject):
166 self.clear_busy() 166 self.clear_busy()
167 self.building = True 167 self.building = True
168 targets = [self.image] 168 targets = [self.image]
169 if self.package_queue:
170 self.set_var_in_file("LINGUAS_INSTALL", "", "local.conf")
171 self.set_var_in_file("PACKAGE_INSTALL", " ".join(self.package_queue), "local.conf")
172 if self.toolchain_packages: 169 if self.toolchain_packages:
173 self.set_var_in_file("TOOLCHAIN_TARGET_TASK", " ".join(self.toolchain_packages), "local.conf") 170 self.set_var_in_file("TOOLCHAIN_TARGET_TASK", " ".join(self.toolchain_packages), "local.conf")
174 targets.append(self.toolchain) 171 targets.append(self.toolchain)
175 if targets[0] == "hob-image": 172 if targets[0] == "hob-image":
173 self.set_var_in_file("LINGUAS_INSTALL", "", "local.conf")
176 hobImage = self.runCommand(["matchFile", "hob-image.bb"]) 174 hobImage = self.runCommand(["matchFile", "hob-image.bb"])
177 if self.base_image != "Start with an empty image recipe": 175 if self.base_image != "Start with an empty image recipe":
178 baseImage = self.runCommand(["matchFile", self.base_image + ".bb"]) 176 baseImage = self.runCommand(["matchFile", self.base_image + ".bb"])