summaryrefslogtreecommitdiff
path: root/documentation/bsp-guide
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2010-12-11 07:24:48 -0800
committerSaul Wold <sgw@linux.intel.com>2010-12-14 13:43:55 -0800
commite7f5bc2504f33570b2f42ca95668590b00f040de (patch)
tree6f50a651788cd2c1833fc919b13ce3d28fdabeea /documentation/bsp-guide
parentef8e0d6f38fd920665cd430b47211df1d7a01f20 (diff)
downloadopenembedded-core-e7f5bc2504f33570b2f42ca95668590b00f040de.tar.gz
openembedded-core-e7f5bc2504f33570b2f42ca95668590b00f040de.tar.bz2
openembedded-core-e7f5bc2504f33570b2f42ca95668590b00f040de.tar.xz
openembedded-core-e7f5bc2504f33570b2f42ca95668590b00f040de.zip
bsp-guide: correct BBPATH example
The BBPATH example was missing a : to separate the path elements. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'documentation/bsp-guide')
-rw-r--r--documentation/bsp-guide/bsp.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index 47722bb65..ecf64319f 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -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"