diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-02-22 11:33:41 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-08 12:07:59 -0800 |
commit | 9b5aedc3bcadb8dc2f1133b5e75c21ef4f010a0b (patch) | |
tree | b8a8c8e5f61e83b03dfc901995f74ddd94af0874 | |
parent | 484cc84043cf3001705cd0d6c5ea9e350c5a5a60 (diff) | |
download | poky-9b5aedc3bcadb8dc2f1133b5e75c21ef4f010a0b.tar.gz |
documentation/dev-manual/dev-manual-common-tasks.xml: S variable edits
More edits to the "Finding the Temporary Source Code" section as
pointed out by Paul Eggleton.
(From yocto-docs rev: 2987abe413687e216c4fe38d1db855409a595dab)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index c675a373bf..893c9e55e4 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -775,11 +775,18 @@ so that there are some definite steps on how to do this. I need more detail her | |||
775 | defined by the | 775 | defined by the |
776 | <filename><ulink url='http://www.yoctoproject.org/docs/latest/poky-ref-manual/poky-ref-manual.html#var-S'>S</ulink></filename> variable. | 776 | <filename><ulink url='http://www.yoctoproject.org/docs/latest/poky-ref-manual/poky-ref-manual.html#var-S'>S</ulink></filename> variable. |
777 | Below is the default value for the <filename>S</filename> variable as defined in the | 777 | Below is the default value for the <filename>S</filename> variable as defined in the |
778 | <filename>/conf/local.conf</filename> configuration file in the Yocto | 778 | <filename>meta/conf/bitbake.conf</filename> configuration file in the |
779 | Project's Build Directory: | 779 | <link linkend='yocto-project-files'>Yocto Project Files</link>: |
780 | <literallayout class='monospaced'> | 780 | <literallayout class='monospaced'> |
781 | S = ${WORKDIR}/${PN}-${PV} | 781 | S = ${WORKDIR}/${BP} |
782 | </literallayout> | 782 | </literallayout> |
783 | <note> | ||
784 | <filename>BP</filename> represents the "Base Package", which is the base package | ||
785 | name and the package version: | ||
786 | <literallayout class='monospaced'> | ||
787 | BP = ${BPN}-${PV} | ||
788 | </literallayout> | ||
789 | </note> | ||
783 | </para> | 790 | </para> |
784 | 791 | ||
785 | <para> | 792 | <para> |