diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2016-07-19 11:53:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-01 12:15:00 +0100 |
commit | f2fa3c59bbbabf0eeee12b3d853529b046b7a719 (patch) | |
tree | 8b03091285794cb1e1505fdd2a2ad8a3fc4f0dc4 /documentation/ref-manual | |
parent | 7c5a1471412634b3eb1279e2db45d46dc55fe0f2 (diff) | |
download | poky-f2fa3c59bbbabf0eeee12b3d853529b046b7a719.tar.gz |
ref-manual: Applied review edits to "Checking for Missing Build-Time Dependencies"
Removed an errant comma and rewrote the final area of the section.
Fixes [YOCTO #9976]
(From yocto-docs rev: 19924dee2ebec3ff2a53152ecb8f79172eb43060)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r-- | documentation/ref-manual/usingpoky.xml | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/documentation/ref-manual/usingpoky.xml b/documentation/ref-manual/usingpoky.xml index 61d5fbf877..99912ff14e 100644 --- a/documentation/ref-manual/usingpoky.xml +++ b/documentation/ref-manual/usingpoky.xml | |||
@@ -275,7 +275,7 @@ | |||
275 | </para> | 275 | </para> |
276 | 276 | ||
277 | <para> | 277 | <para> |
278 | Because, dealing with the second case is more complex, focus will | 278 | Because dealing with the second case is more complex, focus will |
279 | be on the first case. | 279 | be on the first case. |
280 | The | 280 | The |
281 | <link linkend='ref-classes-insane'><filename>build-deps</filename></link> | 281 | <link linkend='ref-classes-insane'><filename>build-deps</filename></link> |
@@ -290,18 +290,21 @@ | |||
290 | Another, more manual, way to check a recipe for missing build-time | 290 | Another, more manual, way to check a recipe for missing build-time |
291 | dependencies of the first type is to build with an empty staging | 291 | dependencies of the first type is to build with an empty staging |
292 | sysroot. | 292 | sysroot. |
293 | An easy way to do this build is to simply remove | 293 | This method can also find missing build-time dependencies |
294 | that are not in the form of libraries, which the | ||
295 | <filename>build-deps</filename> QA check is unable to find. | ||
296 | </para> | ||
297 | |||
298 | <para> | ||
299 | An easy way to empty the staging sysroots is to simply remove | ||
294 | <link linkend='var-TMPDIR'><filename>TMPDIR</filename></link>, | 300 | <link linkend='var-TMPDIR'><filename>TMPDIR</filename></link>, |
295 | which is usually | 301 | which is usually |
296 | <filename>${</filename><link linkend='var-BUILDDIR'><filename>BUILDDIR</filename></link><filename>}/tmp</filename>, | 302 | <filename>${</filename><link linkend='var-BUILDDIR'><filename>BUILDDIR</filename></link><filename>}/tmp</filename>, |
297 | as it includes the staging sysroots. | 303 | as it includes the staging sysroots. |
298 | </para> | 304 | Another, faster method to empty the staging sysroots is to use the |
299 | 305 | <filename>scripts/wipe-sysroot</filename> script, | |
300 | <para> | 306 | which removes just the staging sysroots and keeps everything else |
301 | Another, faster method to remove the staging sysroot is to use the | 307 | in <filename>TMPDIR</filename>. |
302 | <filename>scripts/wipe-sysroot</filename> script, which removes | ||
303 | just the staging sysroots and keeps everything else in | ||
304 | <filename>TMPDIR</filename>. | ||
305 | <note> | 308 | <note> |
306 | The <filename>scripts/</filename> directory appears in | 309 | The <filename>scripts/</filename> directory appears in |
307 | <filename>PATH</filename> after running the build environment | 310 | <filename>PATH</filename> after running the build environment |