summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYasir-Khan <yasir_khan@mentor.com>2014-11-05 13:33:14 +0500
committerNathan Rossi <nathan.rossi@xilinx.com>2014-11-14 18:21:48 +1000
commitfbf7b7cebd3c0f43b6e80c6de7cb771bb848c461 (patch)
tree545f956440df67aaf08847d2bdf9b85b1f32c1f1
parentb2829391d778e5972a0bfa2f8d663d8aa5872d72 (diff)
downloadmeta-xilinx-fbf7b7cebd3c0f43b6e80c6de7cb771bb848c461.tar.gz
layer.conf: correct BBFILES append
Due to immediate expansion operator being used to assign BBFILES variable, bitbake was ignoring BBFILE_COLLECTIONS.split() based append to BBFILES used in other layers to add layer specific bbappends. Use append operator instead of immediate expansion to correct this. Signed-off-by: Yasir-Khan <yasir_khan@mentor.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 dc7dd969..7a92ca92 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -2,7 +2,7 @@
2BBPATH := "${BBPATH}:${LAYERDIR}" 2BBPATH := "${BBPATH}:${LAYERDIR}"
3 3
4# We have a packages directory, add to BBFILES 4# We have a packages directory, add to BBFILES
5BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb" 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
6BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend" 6BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend"
7 7
8BBFILE_COLLECTIONS += "xilinx" 8BBFILE_COLLECTIONS += "xilinx"