summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-04-09 10:39:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-13 23:57:14 +0100
commita75a9fde5f71ae610c4aaedb5ae0a9b587d26b4d (patch)
tree78b4fb34a22f2ff322d5ed4ff46e8c55b4d9a8c3 /documentation
parent7139c4dcb04999e3e0c771f5cb83d7ab3f0eb6db (diff)
downloadpoky-a75a9fde5f71ae610c4aaedb5ae0a9b587d26b4d.tar.gz
ref-manual/ref-variables: ensure values are quoted
Just a couple of examples that didn't use quotes around the value, which is mandatory, so correct these. (From yocto-docs rev: 2903ce2b232536c566bd8c29a8772823b44c19df) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 5b56765cdd..a3f0c1b87a 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -100,7 +100,7 @@
100 By default, this directory is the same as the <link linkend='var-S'><filename>S</filename></link> 100 By default, this directory is the same as the <link linkend='var-S'><filename>S</filename></link>
101 directory: 101 directory:
102 <literallayout class='monospaced'> 102 <literallayout class='monospaced'>
103 B = ${WORKDIR}/${BPN}/{PV}/ 103 B = "${WORKDIR}/${BPN}/{PV}/"
104 </literallayout> 104 </literallayout>
105 You can separate the (<filename>S</filename>) directory and the directory pointed to 105 You can separate the (<filename>S</filename>) directory and the directory pointed to
106 by the <filename>B</filename> variable. 106 by the <filename>B</filename> variable.
@@ -3277,7 +3277,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
3277 files when building a particular package. 3277 files when building a particular package.
3278 It is typically set as follows: 3278 It is typically set as follows:
3279 <literallayout class='monospaced'> 3279 <literallayout class='monospaced'>
3280 T = ${WORKDIR}/temp 3280 T = "${WORKDIR}/temp"
3281 </literallayout> 3281 </literallayout>
3282 The <link linkend='var-WORKDIR'><filename>WORKDIR</filename></link> 3282 The <link linkend='var-WORKDIR'><filename>WORKDIR</filename></link>
3283 is the directory into which BitBake unpacks and builds the package. 3283 is the directory into which BitBake unpacks and builds the package.