aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2016-10-03 07:37:14 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-11 08:51:21 +0100
commite2083c04c75602475e39f6654a4e1303b8f105e4 (patch)
tree2a8550e66b3ce6103e1f4ba6e236b57c2028f120 /documentation
parent6ec45ef53dcf01c925367d5fb7f88b186f1dccee (diff)
downloadopenembedded-core-contrib-e2083c04c75602475e39f6654a4e1303b8f105e4.tar.gz
dev-manual: Fixed IMAGE_FEATURES examples in debug section.
Fixes [YOCTO #9554] In the examples, I changes "IMAGE_FEATURE" to "IMAGE_FEATURES_append" (From yocto-docs rev: 3fc2cc217a0a67b3e0739c6a235ab8e350c4b7c3) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 0476c5a5f1..fb2731931d 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -9896,7 +9896,7 @@
Alternatively, you can add "tools-debug" to
<ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_FEATURES'><filename>IMAGE_FEATURES</filename></ulink>:
<literallayout class='monospaced'>
- IMAGE_FEATURES = " tools-debug"
+ IMAGE_FEATURES_append = " tools-debug"
</literallayout>
</para></listitem>
<listitem><para>
@@ -9909,7 +9909,7 @@
Alternatively, you can do the following to include all the
debug symbols:
<literallayout class='monospaced'>
- IMAGE_FEATURES = " dbg-pkgs"
+ IMAGE_FEATURES_append = " dbg-pkgs"
</literallayout>
</para></listitem>
</itemizedlist>