diff options
author | André Draszik <git@andred.net> | 2016-09-29 09:46:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:14:10 +0100 |
commit | afbd3917061212558ccacda129eff516b735e5b1 (patch) | |
tree | 713567176e99ad80c38ee0c036ba8a398c550dd9 | |
parent | ac1b2fd1b1a76125a8cf45130c22fb66eb018555 (diff) | |
download | openembedded-core-contrib-afbd3917061212558ccacda129eff516b735e5b1.tar.gz |
image-buildinfo: restore trailing newline
The last line in the generated /etc/build doesn't end
with a newline anymore, restore it.
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/image-buildinfo.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/image-buildinfo.bbclass b/meta/classes/image-buildinfo.bbclass index 83d0db37d86..3003f5d2564 100644 --- a/meta/classes/image-buildinfo.bbclass +++ b/meta/classes/image-buildinfo.bbclass @@ -71,7 +71,9 @@ Build Configuration: | Layer Revisions: | ----------------------- ''', - get_layer_revs(d) + get_layer_revs(d), + ''' +''' )) } |