diff options
| author | Yasir-Khan <yasir_khan@mentor.com> | 2014-11-05 13:33:14 +0500 |
|---|---|---|
| committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2014-11-07 12:28:57 +1000 |
| commit | 3ec876abc8762cbaa0c6fcf0d4decfe84c587f08 (patch) | |
| tree | 9bbebfa77f772331c4429a09004ceaf5b71b6dcb /conf/layer.conf | |
| parent | d74bf7644418d0acf3cf0a35ee3a22c44e8ff9f2 (diff) | |
| download | meta-xilinx-3ec876abc8762cbaa0c6fcf0d4decfe84c587f08.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>
Diffstat (limited to 'conf/layer.conf')
| -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 4e03ff65..88d6e5ed 100644 --- a/conf/layer.conf +++ b/conf/layer.conf | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | BBPATH := "${BBPATH}:${LAYERDIR}" | 2 | BBPATH := "${BBPATH}:${LAYERDIR}" |
| 3 | 3 | ||
| 4 | # We have a packages directory, add to BBFILES | 4 | # We have a packages directory, add to BBFILES |
| 5 | BBFILES := "${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" |
