summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2013-03-18 19:33:30 -0700
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-19 16:33:11 +0000
commit4c27cce6688aa39852f3cba5e7b80ec279019605 (patch)
tree9afa6e5ef0e5b5815b5bd194c92a13611253dfc7
parent06e2fe600de962cdba53c23de1207501439a9c9f (diff)
downloadmeta-qt3-4c27cce6688aa39852f3cba5e7b80ec279019605.tar.gz
bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
-rw-r--r--conf/layer.conf6
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 @@
1# We have a conf and classes directory, add to BBPATH 1# We have a conf and classes directory, add to BBPATH
2BBPATH := "${BBPATH}:${LAYERDIR}" 2BBPATH .= ":${LAYERDIR}"
3 3
4# We have a packages directory, add to BBFILES 4# We have a packages directory, add to BBFILES
5BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb" 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
6 6
7BBFILE_COLLECTIONS += "qt3" 7BBFILE_COLLECTIONS += "qt3"
8BBFILE_PATTERN_qt3 := "^${LAYERDIR}/" 8BBFILE_PATTERN_qt3 = "^${LAYERDIR}/"
9BBFILE_PRIORITY_qt3 = "6" 9BBFILE_PRIORITY_qt3 = "6"
10 10