summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/utils.py
diff options
context:
space:
mode:
authorgrygorii tertychnyi via Openembedded-core <openembedded-core@lists.openembedded.org>2018-10-10 19:26:24 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-10-11 10:36:42 +0100
commitee4d0c879713ba50dc6cc3300f44647faebee2e0 (patch)
treeb625474647cf8db2b85bd561e3e4838a7df4a8d0 /meta/lib/oe/utils.py
parent2a5d1db6643482dd06a456e303c6f6bc88059813 (diff)
downloadopenembedded-core-ee4d0c879713ba50dc6cc3300f44647faebee2e0.tar.gz
lib/oe/utils: add eol to format_pkg_list()
Append '\n' to the non-empty formatted string before return. If you write it to the (manifest) file, it will ensure file ends with a newline. Many GNU utilities have problems processing the last line of a file if it is not '\n' terminated. E.g. if the last line is not terminated by a newline character, then "read" will read it but return false, leaving the broken partial line in the read variable(s). It can also break or adversely affect some text processing tools, that operate on the file. Signed-off-by: grygorii tertychnyi <gtertych@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/utils.py')
-rw-r--r--meta/lib/oe/utils.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index 93b0763b0a..d05f517a70 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -347,7 +347,13 @@ def format_pkg_list(pkg_dict, ret_format=None):
for pkg in sorted(pkg_dict):
output.append(pkg)
- return '\n'.join(output)
+ output_str = '\n'.join(output)
+
+ if output_str:
+ # make sure last line is newline terminated
+ output_str += '\n'
+
+ return output_str
def host_gcc_version(d, taskcontextonly=False):
import re, subprocess