diff options
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 6e6577220d..7d694379cd 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -3192,7 +3192,7 @@ | |||
3192 | the build host. | 3192 | the build host. |
3193 | For example, an application linking to a common library needs | 3193 | For example, an application linking to a common library needs |
3194 | access to the library itself and its associated headers. | 3194 | access to the library itself and its associated headers. |
3195 | The way this access is accomplished is by populating sysroot | 3195 | The way this access is accomplished is by populating a sysroot |
3196 | with files. | 3196 | with files. |
3197 | Each recipe has two sysroots in its work directory, one for | 3197 | Each recipe has two sysroots in its work directory, one for |
3198 | target files | 3198 | target files |
@@ -3201,7 +3201,7 @@ | |||
3201 | (<filename>recipe-sysroot-native</filename>). | 3201 | (<filename>recipe-sysroot-native</filename>). |
3202 | <note> | 3202 | <note> |
3203 | You could find the term "staging" used within the Yocto | 3203 | You could find the term "staging" used within the Yocto |
3204 | project regarding files populating sysroot (e.g. the | 3204 | project regarding files populating sysroots (e.g. the |
3205 | <ulink url='&YOCTO_DOCS_REF_URL;#var-STAGING_DIR'><filename>STAGING_DIR</filename></ulink> | 3205 | <ulink url='&YOCTO_DOCS_REF_URL;#var-STAGING_DIR'><filename>STAGING_DIR</filename></ulink> |
3206 | variable). | 3206 | variable). |
3207 | </note> | 3207 | </note> |
@@ -3235,14 +3235,14 @@ | |||
3235 | the sysroot. | 3235 | the sysroot. |
3236 | The following example shows how you could add the | 3236 | The following example shows how you could add the |
3237 | <filename>/opt</filename> directory to the list of | 3237 | <filename>/opt</filename> directory to the list of |
3238 | directories: | 3238 | directories within a recipe: |
3239 | <literallayout class='monospaced'> | 3239 | <literallayout class='monospaced'> |
3240 | SYSROOT_DIRS += "/opt" | 3240 | SYSROOT_DIRS += "/opt" |
3241 | </literallayout> | 3241 | </literallayout> |
3242 | </para> | 3242 | </para> |
3243 | 3243 | ||
3244 | <para> | 3244 | <para> |
3245 | for a more complete description of the | 3245 | For a more complete description of the |
3246 | <ulink url='&YOCTO_DOCS_REF_URL;#ref-tasks-populate_sysroot'><filename>do_populate_sysroot</filename></ulink> | 3246 | <ulink url='&YOCTO_DOCS_REF_URL;#ref-tasks-populate_sysroot'><filename>do_populate_sysroot</filename></ulink> |
3247 | task and its associated functions, see the | 3247 | task and its associated functions, see the |
3248 | <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-staging'><filename>staging</filename></ulink> | 3248 | <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-staging'><filename>staging</filename></ulink> |