summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2013-10-18 04:22:58 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-10-18 10:36:59 -0400
commitba74aae1f9c8452ec8ad90531bc6694b69f99ccc (patch)
tree2cb352453b8cefab5fc7902df123ca1dbb027486
parent505c4a1c1c78403e31792007b5aa0e777074331f (diff)
downloadmeta-virtualization-ba74aae1f9c8452ec8ad90531bc6694b69f99ccc.tar.gz
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 <liezhi.yang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--conf/layer.conf2
1 files changed, 1 insertions, 1 deletions
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}/"
9BBFILE_PRIORITY_virtualization-layer = "7" 9BBFILE_PRIORITY_virtualization-layer = "7"
10 10
11# Custom licenses used by some packages in this layer 11# Custom licenses used by some packages in this layer
12LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" \ No newline at end of file 12LICENSE_PATH += "${LAYERDIR}/files/custom-licenses"