diff options
author | Darren Hart <dvhart@linux.intel.com> | 2010-12-11 07:24:48 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2010-12-14 13:43:55 -0800 |
commit | e7f5bc2504f33570b2f42ca95668590b00f040de (patch) | |
tree | 6f50a651788cd2c1833fc919b13ce3d28fdabeea /documentation/bsp-guide | |
parent | ef8e0d6f38fd920665cd430b47211df1d7a01f20 (diff) | |
download | poky-e7f5bc2504f33570b2f42ca95668590b00f040de.tar.gz |
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.xml | 2 |
1 files changed, 1 insertions, 1 deletions
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/ | |||
117 | <para> | 117 | <para> |
118 | <programlisting> | 118 | <programlisting> |
119 | # We have a conf directory, add to BBPATH | 119 | # We have a conf directory, add to BBPATH |
120 | BBPATH := "${BBPATH}${LAYERDIR}" | 120 | BBPATH := "${BBPATH}:${LAYERDIR}" |
121 | 121 | ||
122 | # We have a recipes directory containing .bb and .bbappend files, add to BBFILES | 122 | # We have a recipes directory containing .bb and .bbappend files, add to BBFILES |
123 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ ${LAYERDIR}/recipes/*/*.bbappend" | 123 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ ${LAYERDIR}/recipes/*/*.bbappend" |