diff options
author | 2013-03-18 19:33:30 -0700 | |
---|---|---|
committer | 2013-03-19 16:33:11 +0000 | |
commit | 4c27cce6688aa39852f3cba5e7b80ec279019605 (patch) | |
tree | 9afa6e5ef0e5b5815b5bd194c92a13611253dfc7 | |
parent | 06e2fe600de962cdba53c23de1207501439a9c9f (diff) | |
download | meta-qt3-1.4_M6.rc1.tar.gz meta-qt3-1.4_M6.rc1.tar.bz2 meta-qt3-1.4_M6.rc1.zip |
layer.conf: avoid unnecessary early expansion with :=yocto-1.4.4yocto-1.4.3yocto-1.4.2.rc1yocto-1.4.2yocto-1.4.1yocot-1.4.2dylan-9.0.4dylan-9.0.3dylan-9.0.2.rc1dylan-9.0.2dylan-9.0.1.rc1dylan-9.0.1dylan-9.0.01.5_M1.rc11.5_M1.final1.4_M6.rc11.4_M5.rc31.4_M5.rc21.4_M5.rc11.4_M5.final1.4.1.rc1dylan1.4_M5
bitbake handles immediate expansions of LAYERDIR for us automatically.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
-rw-r--r-- | conf/layer.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf index f4597db..84ab5f7 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -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" +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb" BBFILE_COLLECTIONS += "qt3" -BBFILE_PATTERN_qt3 := "^${LAYERDIR}/" +BBFILE_PATTERN_qt3 = "^${LAYERDIR}/" BBFILE_PRIORITY_qt3 = "6" |