summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2016-02-15 11:26:18 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-03 17:40:19 +0000
commit6d601592e17ee98626bdce28fc9b9b940038a668 (patch)
tree1b7b1e4ed699545e4d9eb7eacdbf97a4b22b66b1 /documentation
parent75c088f2e26ab12cb832c7d1bdeaa017f4995555 (diff)
downloadpoky-6d601592e17ee98626bdce28fc9b9b940038a668.tar.gz
ref-manual: Updated the S variable description with feedback
Applied wording feedback. Fixes [YOCTO #8542] (From yocto-docs rev: 7f2ed81317e26fb5d3dd3003cd96b3691174c5c0) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index f5249416b9..3970a2dc64 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -10628,10 +10628,13 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
10628 </para> 10628 </para>
10629 10629
10630 <para> 10630 <para>
10631 This next example assumes Git, which means the default 10631 This next example assumes a Git repository.
10632 directory is <filename>${WORKDIR}/git</filename>. 10632 By default, Git repositories are cloned to
10633 Consequently, you must explicitly set 10633 <filename>${WORKDIR}/git</filename> during
10634 <filename>S</filename> so the source can be located: 10634 <link linkend='ref-tasks-fetch'><filename>do_fetch</filename></link>.
10635 Since this path is different from the default value of
10636 <filename>S</filename>, you must set it specifically
10637 so the source can be located:
10635 <literallayout class='monospaced'> 10638 <literallayout class='monospaced'>
10636 SRC_URI = "git://path/to/repo.git" 10639 SRC_URI = "git://path/to/repo.git"
10637 S = "${WORKDIR}/git" 10640 S = "${WORKDIR}/git"