diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index f009210f75..97210ba4e3 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1155,11 +1155,11 @@ class BBCooker: | |||
1155 | if topdir in base_image: | 1155 | if topdir in base_image: |
1156 | base_image = require_line.split()[1] | 1156 | base_image = require_line.split()[1] |
1157 | imagefile.write("require " + base_image + "\n") | 1157 | imagefile.write("require " + base_image + "\n") |
1158 | package_install = "PACKAGE_INSTALL_forcevariable = \"" | 1158 | image_install = "IMAGE_INSTALL = \"" |
1159 | for package in package_queue: | 1159 | for package in package_queue: |
1160 | package_install += str(package) + " " | 1160 | image_install += str(package) + " " |
1161 | package_install += "\"\n" | 1161 | image_install += "\"\n" |
1162 | imagefile.write(package_install) | 1162 | imagefile.write(image_install) |
1163 | 1163 | ||
1164 | description_var = "DESCRIPTION = \"" + description + "\"\n" | 1164 | description_var = "DESCRIPTION = \"" + description + "\"\n" |
1165 | imagefile.write(description_var) | 1165 | imagefile.write(description_var) |