diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2013-10-18 04:22:58 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-10-18 10:36:59 -0400 |
| commit | ba74aae1f9c8452ec8ad90531bc6694b69f99ccc (patch) | |
| tree | 2cb352453b8cefab5fc7902df123ca1dbb027486 | |
| parent | 505c4a1c1c78403e31792007b5aa0e777074331f (diff) | |
| download | meta-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.conf | 2 |
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}/" | |||
| 9 | BBFILE_PRIORITY_virtualization-layer = "7" | 9 | BBFILE_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 |
| 12 | LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" \ No newline at end of file | 12 | LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" |
