layer.conf: Set BBPATH correctly

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-07-20 14:20:04 +01:00
parent d39ae18df2
commit 4dc54a274d
4 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# We have a conf and classes directory, add to BBPATH
BBPATH := "${BBPATH}${LAYERDIR}"
BBPATH := "${BBPATH}:${LAYERDIR}"
# We have a packages directory, add to BBFILES
BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb"

View File

@ -1,5 +1,5 @@
# We have a conf and classes directory, add to BBPATH
BBPATH := "${BBPATH}${LAYERDIR}"
BBPATH := "${BBPATH}:${LAYERDIR}"
# We have a packages directory, add to BBFILES
BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb"

View File

@ -1,5 +1,5 @@
# We have a conf and classes directory, add to BBPATH
BBPATH := "${BBPATH}${LAYERDIR}"
BBPATH := "${BBPATH}:${LAYERDIR}"
# We have a packages directory, add to BBFILES
BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb"

View File

@ -1,5 +1,6 @@
BBPATH ?= ""
# We have a conf and classes directory, add to BBPATH
BBPATH := "${BBPATH}${LAYERDIR}"
BBPATH := "${BBPATH}:${LAYERDIR}"
# We have a packages directory, add to BBFILES
BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb"