diff options
| author | Christopher Larson <chris_larson@mentor.com> | 2013-03-19 01:28:31 +0000 |
|---|---|---|
| committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2013-03-26 13:58:40 +0800 |
| commit | 81cfb66250e589be5fadef9d1be0b9a2e2b0d4d2 (patch) | |
| tree | 5f8158d410c254a053fb683ae979fb20a684e2ad | |
| parent | fa713448e2dfe12487e0d1ec4c610baa26cf2ef4 (diff) | |
| download | meta-fsl-ppc-81cfb66250e589be5fadef9d1be0b9a2e2b0d4d2.tar.gz | |
layer.conf: avoid unnecessary early expansion with :=
bitbake handles immediate expansions of LAYERDIR for us automatically.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
| -rw-r--r-- | conf/layer.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/layer.conf b/conf/layer.conf index 9d2e54b..ad8c5f3 100644 --- a/conf/layer.conf +++ b/conf/layer.conf | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | # We have a packages directory, add to BBFILES | 1 | # We have a packages directory, add to BBFILES |
| 2 | BBPATH := "${BBPATH}:${LAYERDIR}" | 2 | BBPATH .= ":${LAYERDIR}" |
| 3 | 3 | ||
| 4 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*" | 4 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*" |
| 5 | BBFILES += "${LAYERDIR}/images/*.bb*" | 5 | BBFILES += "${LAYERDIR}/images/*.bb*" |
| 6 | 6 | ||
| 7 | BBFILE_COLLECTIONS += "fsl" | 7 | BBFILE_COLLECTIONS += "fsl" |
| 8 | BBFILE_PATTERN_fsl := "^${LAYERDIR}/" | 8 | BBFILE_PATTERN_fsl = "^${LAYERDIR}/" |
| 9 | BBFILE_PRIORITY_fsl = "5" | 9 | BBFILE_PRIORITY_fsl = "5" |
| 10 | 10 | ||
| 11 | BB_ENV_EXTRAWHITE := "KSRC USRC" | 11 | BB_ENV_EXTRAWHITE := "KSRC USRC" |
