summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/usingpoky.xml33
1 files changed, 22 insertions, 11 deletions
diff --git a/documentation/ref-manual/usingpoky.xml b/documentation/ref-manual/usingpoky.xml
index 1edc9ea238..49166e15bf 100644
--- a/documentation/ref-manual/usingpoky.xml
+++ b/documentation/ref-manual/usingpoky.xml
@@ -271,12 +271,18 @@
271 <section id='usingpoky-debugging-buildfile'> 271 <section id='usingpoky-debugging-buildfile'>
272 <title>Building with No Dependencies</title> 272 <title>Building with No Dependencies</title>
273 <para> 273 <para>
274 If you really want to build a specific <filename>.bb</filename> file, you can use 274 To build a specific recipe (<filename>.bb</filename> file),
275 the command form <filename>bitbake -b &lt;somepath/somefile.bb&gt;</filename>. 275 you can use the following command form:
276 This command form does not check for dependencies so you should use it 276 <literallayout class='monospaced'>
277 only when you know its dependencies already exist. 277 $ bitbake -b &lt;somepath/somerecipe.bb&gt;
278 You can also specify fragments of the filename. 278 </literallayout>
279 In this case, BitBake checks for a unique match. 279 This command form does not check for dependencies.
280 Consequently, you should use it
281 only when you know dependencies already exist.
282 <note>
283 You can also specify fragments of the filename.
284 In this case, BitBake checks for a unique match.
285 </note>
280 </para> 286 </para>
281 </section> 287 </section>
282 288
@@ -284,11 +290,16 @@
284 <title>Variables</title> 290 <title>Variables</title>
285 <para> 291 <para>
286 You can use the <filename>-e</filename> BitBake option to 292 You can use the <filename>-e</filename> BitBake option to
287 display the resulting environment for a configuration 293 display the parsing environment for a configuration.
288 when you do not specify a package or for a specific package when 294 The following displays the general parsing environment:
289 you do specify the package. 295 <literallayout class='monospaced'>
290 If you want to show the environment resulting from parsing a single 296 $ bitbake -e
291 recipe, use the <filename>-b recipename</filename> form. 297 </literallayout>
298 This next example shows the parsing environment for a specific
299 recipe:
300 <literallayout class='monospaced'>
301 $ bitbake -e &lt;recipename&gt;
302 </literallayout>
292 </para> 303 </para>
293 </section> 304 </section>
294 305