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>
This commit is contained in:
Christopher Larson 2013-03-18 19:14:46 -07:00 committed by Holger Hans Peter Freyther
parent 343068cf92
commit 66dbe39b2b
1 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
# We have a conf and classes directory, add to BBPATH
BBPATH := "${BBPATH}:${LAYERDIR}"
BBPATH .= ":${LAYERDIR}"
# We have a packages directory, add to BBFILES
BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "smalltalk"
BBFILE_PATTERN_smalltalk := "^${LAYERDIR}/"
BBFILE_PATTERN_smalltalk = "^${LAYERDIR}/"
BBFILE_PRIORITY_smalltalk = "1"