]> code.ossystems Code Review - openembedded-core.git/commitdiff
bsp-guide: correct BBPATH example
authorDarren Hart <dvhart@linux.intel.com>
Sat, 11 Dec 2010 15:24:48 +0000 (07:24 -0800)
committerSaul Wold <sgw@linux.intel.com>
Tue, 14 Dec 2010 21:43:55 +0000 (13:43 -0800)
The BBPATH example was missing a : to separate the path elements.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
documentation/bsp-guide/bsp.xml

index 47722bb6562ffa611a0eac6f1edce7f82321a1a1..ecf64319fde4f0b5970ad79aed31c5864736244b 100644 (file)
@@ -117,7 +117,7 @@ meta-bsp/prebuilds/
             <para>
                <programlisting>
 # 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"