From ba74aae1f9c8452ec8ad90531bc6694b69f99ccc Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Fri, 18 Oct 2013 04:22:58 -0400 Subject: conf/layer.conf: fix "No newline at end of file" The last line lacked a newline (usually '\n', aka CR or CRLF) in the end, so there was a warning from git diff: \ No newline at end of file The last byte of the file should be a newline. Note: It seems that nothing is changed in this commit, but it does change the end of the last line. Signed-off-by: Robert Yang Signed-off-by: Bruce Ashfield --- conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index 4c1fa19a..15ed1dfe 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -9,4 +9,4 @@ BBFILE_PATTERN_virtualization-layer := "^${LAYERDIR}/" BBFILE_PRIORITY_virtualization-layer = "7" # Custom licenses used by some packages in this layer -LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" \ No newline at end of file +LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" -- cgit v1.2.3-54-g00ecf