summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/bldcontrol/localhostbecontroller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
index 2215d7af24..2dd48d454a 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -242,7 +242,7 @@ class LocalhostBEController(BuildEnvironmentController):
242 # create recipe 242 # create recipe
243 recipe = os.path.join(layerpath, "recipes", "%s.bb" % target.target) 243 recipe = os.path.join(layerpath, "recipes", "%s.bb" % target.target)
244 with open(recipe, "w") as recipef: 244 with open(recipe, "w") as recipef:
245 recipef.write("require %s\n" % customrecipe.base_recipe.recipe.file_path) 245 recipef.write("require %s\n" % customrecipe.base_recipe.file_path)
246 packages = [pkg.name for pkg in customrecipe.packages.all()] 246 packages = [pkg.name for pkg in customrecipe.packages.all()]
247 if packages: 247 if packages:
248 recipef.write('IMAGE_INSTALL = "%s"\n' % ' '.join(packages)) 248 recipef.write('IMAGE_INSTALL = "%s"\n' % ' '.join(packages))