summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.xml
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2020-09-17 01:58:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:36 +0100
commitc387f0c2543a9dd7f8eca069629ede4bb5ec5dba (patch)
treed0a7fccf9b84915862b1174ae75cd0437a60bb2d /documentation/dev-manual/dev-manual-common-tasks.xml
parent6813141743f4263e6b03fd7294f9cec4ec1a3194 (diff)
downloadpoky-c387f0c2543a9dd7f8eca069629ede4bb5ec5dba.tar.gz
sphinx: replace special quotes with single and double quotes
(From yocto-docs rev: 0aeb7a94abcef3cb3850c753dd0a243f381e6675) Signed-off-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.xml')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 1f24c73434..247f6abfd4 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -8384,7 +8384,7 @@
8384 If you see the following error, you need to 8384 If you see the following error, you need to
8385 update or create a 8385 update or create a
8386 <filename>~/.mtoolsrc</filename> file and 8386 <filename>~/.mtoolsrc</filename> file and
8387 be sure to have the line mtools_skip_check=1 8387 be sure to have the line "mtools_skip_check=1"
8388 in the file. 8388 in the file.
8389 Then, run the Wic command again: 8389 Then, run the Wic command again:
8390 <literallayout class='monospaced'> 8390 <literallayout class='monospaced'>
@@ -9837,7 +9837,7 @@
9837 <listitem><para> 9837 <listitem><para>
9838 Select the desired package format as follows: 9838 Select the desired package format as follows:
9839 <literallayout class='monospaced'> 9839 <literallayout class='monospaced'>
9840 PACKAGE_CLASSES ?= package_<replaceable>packageformat</replaceable> 9840 PACKAGE_CLASSES ?= "package_<replaceable>packageformat</replaceable>"
9841 </literallayout> 9841 </literallayout>
9842 where <replaceable>packageformat</replaceable> 9842 where <replaceable>packageformat</replaceable>
9843 can be "ipk", "rpm", "deb", or "tar" which are the 9843 can be "ipk", "rpm", "deb", or "tar" which are the
@@ -14193,7 +14193,7 @@
14193 <filename>local.conf</filename> file or in an image 14193 <filename>local.conf</filename> file or in an image
14194 recipe: 14194 recipe:
14195 <literallayout class='monospaced'> 14195 <literallayout class='monospaced'>
14196 IMAGE_INSTALL_append = gdbserver" 14196 IMAGE_INSTALL_append = " gdbserver"
14197 </literallayout> 14197 </literallayout>
14198 The change makes sure the <filename>gdbserver</filename> 14198 The change makes sure the <filename>gdbserver</filename>
14199 package is included. 14199 package is included.