summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 2245f8ea34..49e6345ce4 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -234,7 +234,7 @@ class BBCooker:
234 total += c 234 total += c
235 235
236 #add the variable on a single line, to be easy to replace the second time 236 #add the variable on a single line, to be easy to replace the second time
237 total += "#added by bitbake" 237 total += "\n#added by bitbake"
238 total += "\n%s = \"%s\"\n" % (var, val) 238 total += "\n%s = \"%s\"\n" % (var, val)
239 239
240 with open(default_file, 'w') as f: 240 with open(default_file, 'w') as f: