mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
7139c4dcb0
commit
a75a9fde5f
@@ -100,7 +100,7 @@
|
|||||||
By default, this directory is the same as the <link linkend='var-S'><filename>S</filename></link>
|
By default, this directory is the same as the <link linkend='var-S'><filename>S</filename></link>
|
||||||
directory:
|
directory:
|
||||||
<literallayout class='monospaced'>
|
<literallayout class='monospaced'>
|
||||||
B = ${WORKDIR}/${BPN}/{PV}/
|
B = "${WORKDIR}/${BPN}/{PV}/"
|
||||||
</literallayout>
|
</literallayout>
|
||||||
You can separate the (<filename>S</filename>) directory and the directory pointed to
|
You can separate the (<filename>S</filename>) directory and the directory pointed to
|
||||||
by the <filename>B</filename> variable.
|
by the <filename>B</filename> variable.
|
||||||
@@ -3277,7 +3277,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
|
|||||||
files when building a particular package.
|
files when building a particular package.
|
||||||
It is typically set as follows:
|
It is typically set as follows:
|
||||||
<literallayout class='monospaced'>
|
<literallayout class='monospaced'>
|
||||||
T = ${WORKDIR}/temp
|
T = "${WORKDIR}/temp"
|
||||||
</literallayout>
|
</literallayout>
|
||||||
The <link linkend='var-WORKDIR'><filename>WORKDIR</filename></link>
|
The <link linkend='var-WORKDIR'><filename>WORKDIR</filename></link>
|
||||||
is the directory into which BitBake unpacks and builds the package.
|
is the directory into which BitBake unpacks and builds the package.
|
||||||
|
|||||||
Reference in New Issue
Block a user