summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/ref-classes.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2015-04-27 08:15:56 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-28 16:30:46 +0100
commit6e4a1a093661722aeaf5ca132eee5befaae95ff0 (patch)
tree9e89a9188bc290d3220cb74cca429e726b26b180 /documentation/ref-manual/ref-classes.xml
parentae736dbdd140975ba43f06e635b461dbf36a117e (diff)
downloadpoky-6e4a1a093661722aeaf5ca132eee5befaae95ff0.tar.gz
dev-manual; ref-manual: Fixed &dash; issue
Fixes [YOCTO #7386] Apparently the "&dash;" ENTITY used throughout the YP manual set to get literal "-" characters in example commands renders into a unicode that is not a dash. This results in users getting errors if they attempt to cut-and-paste a sample command that uses a "-" character from the manual into a shell. I have universally replaced all the "&dash;" strings in the YP manual set to "-" strings. (From yocto-docs rev: ef6dbf591eee70866f163e3c98454b6145f4fa3a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/ref-classes.xml')
-rw-r--r--documentation/ref-manual/ref-classes.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml
index 3889473b6e..880badda73 100644
--- a/documentation/ref-manual/ref-classes.xml
+++ b/documentation/ref-manual/ref-classes.xml
@@ -116,19 +116,19 @@
116 It's useful to have some idea of how the tasks defined by this class work 116 It's useful to have some idea of how the tasks defined by this class work
117 and what they do behind the scenes. 117 and what they do behind the scenes.
118 <itemizedlist> 118 <itemizedlist>
119 <listitem><para><link linkend='ref-tasks-configure'><filename>do_configure</filename></link> &dash; 119 <listitem><para><link linkend='ref-tasks-configure'><filename>do_configure</filename></link> -
120 Regenerates the 120 Regenerates the
121 configure script (using <filename>autoreconf</filename>) and then launches it 121 configure script (using <filename>autoreconf</filename>) and then launches it
122 with a standard set of arguments used during cross-compilation. 122 with a standard set of arguments used during cross-compilation.
123 You can pass additional parameters to <filename>configure</filename> through the 123 You can pass additional parameters to <filename>configure</filename> through the
124 <filename><link linkend='var-EXTRA_OECONF'>EXTRA_OECONF</link></filename> variable. 124 <filename><link linkend='var-EXTRA_OECONF'>EXTRA_OECONF</link></filename> variable.
125 </para></listitem> 125 </para></listitem>
126 <listitem><para><link linkend='ref-tasks-compile'><filename>do_compile</filename></link> &dash; Runs <filename>make</filename> with 126 <listitem><para><link linkend='ref-tasks-compile'><filename>do_compile</filename></link> - Runs <filename>make</filename> with
127 arguments that specify the compiler and linker. 127 arguments that specify the compiler and linker.
128 You can pass additional arguments through 128 You can pass additional arguments through
129 the <filename><link linkend='var-EXTRA_OEMAKE'>EXTRA_OEMAKE</link></filename> variable. 129 the <filename><link linkend='var-EXTRA_OEMAKE'>EXTRA_OEMAKE</link></filename> variable.
130 </para></listitem> 130 </para></listitem>
131 <listitem><para><link linkend='ref-tasks-install'><filename>do_install</filename></link> &dash; Runs <filename>make install</filename> 131 <listitem><para><link linkend='ref-tasks-install'><filename>do_install</filename></link> - Runs <filename>make install</filename>
132 and passes in 132 and passes in
133 <filename>${</filename><link linkend='var-D'><filename>D</filename></link><filename>}</filename> 133 <filename>${</filename><link linkend='var-D'><filename>D</filename></link><filename>}</filename>
134 as <filename>DESTDIR</filename>. 134 as <filename>DESTDIR</filename>.