summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2015-11-26 15:38:36 +1000
committerNathan Rossi <nathan@nathanrossi.com>2015-11-26 15:38:36 +1000
commit34736392307c45c25176a135edde672b8ca5062e (patch)
tree692f7b1d1cada0d536db416b8178b4c24b757720
parentb941321a4d72e3299999c03bcb3ddba3e66171fe (diff)
downloadmeta-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.conf6
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
2BBPATH := "${BBPATH}:${LAYERDIR}" 2BBPATH .= ":${LAYERDIR}"
3 3
4# We have a packages directory, add to BBFILES 4# We have a packages directory, add to BBFILES
5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb" 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
6BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend" 6BBFILES += "${LAYERDIR}/recipes-*/*/*.bbappend"
7 7
8BBFILE_COLLECTIONS += "xilinx" 8BBFILE_COLLECTIONS += "xilinx"
9BBFILE_PATTERN_xilinx := "^${LAYERDIR}/" 9BBFILE_PATTERN_xilinx = "^${LAYERDIR}/"
10BBFILE_PRIORITY_xilinx = "5" 10BBFILE_PRIORITY_xilinx = "5"
11 11
12LAYERDEPENDS_xilinx = "core" 12LAYERDEPENDS_xilinx = "core"