summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-08-06 15:53:59 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-13 13:18:50 +0100
commit97ece259f70e8b4a64e00c97fa8f4eb584d84fb8 (patch)
treead1cce09f1926124ea5fbc8304d9519b435cbadf /documentation
parent2111a92a738795dd2f5054298543319c3895d89b (diff)
downloadpoky-97ece259f70e8b4a64e00c97fa8f4eb584d84fb8.tar.gz
ref-manual: Updates to the S variable description in the glossary.
(From yocto-docs rev: 44a2b16f77cb86e37f3dcd46c52f699a59e3b418) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml25
1 files changed, 14 insertions, 11 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index da051e5e45..85cbf25746 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -3389,24 +3389,27 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
3389 <glossentry id='var-S'><glossterm>S</glossterm> 3389 <glossentry id='var-S'><glossterm>S</glossterm>
3390 <glossdef> 3390 <glossdef>
3391 <para> 3391 <para>
3392 The location in the <ulink url='&YOCTO_DOCS_DEV_URL;#build-directory'>Build Directory</ulink> 3392 The location in the
3393 where unpacked package source code resides. 3393 <ulink url='&YOCTO_DOCS_DEV_URL;#build-directory'>Build Directory</ulink>
3394 where unpacked recipe source code resides.
3394 This location is within the working directory 3395 This location is within the working directory
3395 (<filename><link linkend='var-WORKDIR'>WORKDIR</link></filename>), which 3396 (<filename><link linkend='var-WORKDIR'>WORKDIR</link></filename>),
3396 is not static. 3397 which is not static.
3397 The unpacked source location depends on the package name 3398 The unpacked source location depends on the recipe name
3398 (<filename><link linkend='var-PN'>PN</link></filename>) and 3399 (<filename><link linkend='var-PN'>PN</link></filename>) and
3399 package version (<filename><link linkend='var-PV'>PV</link></filename>) as 3400 recipe version
3401 (<filename><link linkend='var-PV'>PV</link></filename>) as
3400 follows: 3402 follows:
3401 <literallayout class='monospaced'> 3403 <literallayout class='monospaced'>
3402 ${WORKDIR}/${PN}/${PV} 3404 ${WORKDIR}/${PN}/${PV}
3403 </literallayout> 3405 </literallayout>
3404 As an example, assume a 3406 As an example, assume a
3405 <ulink url='&YOCTO_DOCS_DEV_URL;#source-directory'>Source Directory</ulink> top-level 3407 <ulink url='&YOCTO_DOCS_DEV_URL;#source-directory'>Source Directory</ulink>
3406 folder named <filename>poky</filename> and a default Build 3408 top-level folder named <filename>poky</filename> and a
3407 Directory at <filename>poky/build</filename>. 3409 default Build Directory at <filename>poky/build</filename>.
3408 In this case, the working directory the build system uses to build 3410 In this case, the working directory the build system uses
3409 the <filename>db</filename> package is the following: 3411 to keep the unpacked recipe for <filename>db</filename>
3412 is the following:
3410 <literallayout class='monospaced'> 3413 <literallayout class='monospaced'>
3411 ~/poky/build/tmp/work/qemux86-poky-linux/db/5.1.19-r3/db-5.1.19 3414 ~/poky/build/tmp/work/qemux86-poky-linux/db/5.1.19-r3/db-5.1.19
3412 </literallayout> 3415 </literallayout>