summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/ref-variables.xml
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:20 +0100
commitc9e3261d135d36d1686b754a14ac24d4df8d4ee8 (patch)
treee143258c3207a3d4c0c1af824bad5e1729f757a0 /documentation/ref-manual/ref-variables.xml
parent9cc9a9ba06c2e720f35fb5e18d3606e34a983ebc (diff)
downloadpoky-c9e3261d135d36d1686b754a14ac24d4df8d4ee8.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/ref-manual/ref-variables.xml')
-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.