From: Darren Hart Date: Sat, 11 Dec 2010 15:24:48 +0000 (-0800) Subject: bsp-guide: correct BBPATH example X-Git-Tag: 2011-1~3456 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e7f5bc2504f33570b2f42ca95668590b00f040de;p=openembedded-core.git bsp-guide: correct BBPATH example The BBPATH example was missing a : to separate the path elements. Signed-off-by: Darren Hart --- diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml index 47722bb656..ecf64319fd 100644 --- a/documentation/bsp-guide/bsp.xml +++ b/documentation/bsp-guide/bsp.xml @@ -117,7 +117,7 @@ meta-bsp/prebuilds/ # We have a conf directory, add to BBPATH -BBPATH := "${BBPATH}${LAYERDIR}" +BBPATH := "${BBPATH}:${LAYERDIR}" # We have a recipes directory containing .bb and .bbappend files, add to BBFILES BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ ${LAYERDIR}/recipes/*/*.bbappend"