diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2015-11-26 15:38:36 +1000 |
---|---|---|
committer | Nathan Rossi <nathan@nathanrossi.com> | 2015-11-26 15:38:36 +1000 |
commit | 34736392307c45c25176a135edde672b8ca5062e (patch) | |
tree | 692f7b1d1cada0d536db416b8178b4c24b757720 | |
parent | b941321a4d72e3299999c03bcb3ddba3e66171fe (diff) | |
download | meta-xilinx-34736392307c45c25176a135edde672b8ca5062e.tar.gz |
layer.conf: Remove unnecessary early expansion with ':='
Avoid the use of early expansion operator. This change is done because
LAYERDIR immediate expansion is handled automatically by bitbake.
This change brings the layer.conf in-line with common practices used by
other layers.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
-rw-r--r-- | conf/layer.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf index fdecc03a..dac3e246 100644 --- a/conf/layer.conf +++ b/conf/layer.conf | |||
@@ -1,12 +1,12 @@ | |||
1 | # We have a conf and classes directory, add to BBPATH | 1 | # We have a conf and classes directory, add to BBPATH |
2 | BBPATH := "${BBPATH}:${LAYERDIR}" | 2 | BBPATH .= ":${LAYERDIR}" |
3 | 3 | ||
4 | # We have a packages directory, add to BBFILES | 4 | # We have a packages directory, add to BBFILES |
5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb" | 5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb" |
6 | BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend" | 6 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bbappend" |
7 | 7 | ||
8 | BBFILE_COLLECTIONS += "xilinx" | 8 | BBFILE_COLLECTIONS += "xilinx" |
9 | BBFILE_PATTERN_xilinx := "^${LAYERDIR}/" | 9 | BBFILE_PATTERN_xilinx = "^${LAYERDIR}/" |
10 | BBFILE_PRIORITY_xilinx = "5" | 10 | BBFILE_PRIORITY_xilinx = "5" |
11 | 11 | ||
12 | LAYERDEPENDS_xilinx = "core" | 12 | LAYERDEPENDS_xilinx = "core" |