diff options
author | Christopher Larson <chris_larson@mentor.com> | 2013-03-18 19:03:20 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-19 11:54:22 +0000 |
commit | a785a9d9aff97ae3ddde460474825be28c36009c (patch) | |
tree | 2f1b0ef7bc2bcd50b0c6c4ecb714890e28636eb4 /meta-yocto | |
parent | 15ab96040f244d398954363f09e5a8110076fd29 (diff) | |
download | poky-a785a9d9aff97ae3ddde460474825be28c36009c.tar.gz |
layer.conf: avoid unnecessary early expansion with :=
bitbake handles immediate expansions of LAYERDIR for us automatically.
(From meta-yocto rev: ee59f1ec94ba8474876603dad1ab32d131227f49)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r-- | meta-yocto/conf/layer.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-yocto/conf/layer.conf b/meta-yocto/conf/layer.conf index 791796243f..89ed171003 100644 --- a/meta-yocto/conf/layer.conf +++ b/meta-yocto/conf/layer.conf | |||
@@ -1,11 +1,11 @@ | |||
1 | # We have a conf and classes directory, add to BBPATH | 1 | # We have a conf and classes directory, add to BBPATH |
2 | BBPATH := "${LAYERDIR}:${BBPATH}" | 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 := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ | 5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ |
6 | ${LAYERDIR}/recipes-*/*/*.bbappend" | 6 | ${LAYERDIR}/recipes-*/*/*.bbappend" |
7 | 7 | ||
8 | BBFILE_COLLECTIONS += "yocto" | 8 | BBFILE_COLLECTIONS += "yocto" |
9 | BBFILE_PATTERN_yocto := "^${LAYERDIR}/" | 9 | BBFILE_PATTERN_yocto = "^${LAYERDIR}/" |
10 | BBFILE_PRIORITY_yocto = "5" | 10 | BBFILE_PRIORITY_yocto = "5" |
11 | 11 | ||