diff options
author | André Draszik <git@andred.net> | 2016-09-29 09:46:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-01 21:45:55 +0100 |
commit | a3e5ebea344f57a41eb12a4c730fd6c68233c320 (patch) | |
tree | 438a7922516210503543280f721b5a3578ecaaba /meta/classes/image-buildinfo.bbclass | |
parent | 2056bad636950af307c0e592e413d0edb9999611 (diff) | |
download | poky-a3e5ebea344f57a41eb12a4c730fd6c68233c320.tar.gz |
image-buildinfo: restore trailing newline
The last line in the generated /etc/build doesn't end
with a newline anymore, restore it.
(From OE-Core rev: afbd3917061212558ccacda129eff516b735e5b1)
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-buildinfo.bbclass')
-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 83d0db37d8..3003f5d256 100644 --- a/meta/classes/image-buildinfo.bbclass +++ b/meta/classes/image-buildinfo.bbclass | |||
@@ -71,7 +71,9 @@ Build Configuration: | | |||
71 | Layer Revisions: | | 71 | Layer Revisions: | |
72 | ----------------------- | 72 | ----------------------- |
73 | ''', | 73 | ''', |
74 | get_layer_revs(d) | 74 | get_layer_revs(d), |
75 | ''' | ||
76 | ''' | ||
75 | )) | 77 | )) |
76 | } | 78 | } |
77 | 79 | ||