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