summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-02-12 15:46:37 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-17 15:39:46 +0000
commitac499f0b9f8a421a4e63d2de2a0b89f20c43d81c (patch)
treec12b9eca8d96217364ae5adbd9cad8e770f7e1b0 /documentation
parentdeb3859820ef96fcf0a8eb2f1d6fce334988a329 (diff)
downloadpoky-ac499f0b9f8a421a4e63d2de2a0b89f20c43d81c.tar.gz
dev-manual: Fixed code block example for ARCHIVER.
There was an incorrect wrapping of code in the source example. Reported-by: Ross Burton <ross.burton@intel.com> (From yocto-docs rev: 478c3bba9e4b1b72dd11b58ebf9eb7ed54e80081) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml3
1 files changed, 1 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index a85014fc16..092f2c1763 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -6807,8 +6807,7 @@
6807 <link linkend='build-directory'>Build Directory</link>: 6807 <link linkend='build-directory'>Build Directory</link>:
6808 <literallayout class='monospaced'> 6808 <literallayout class='monospaced'>
6809 ARCHIVER_MODE ?= "original" 6809 ARCHIVER_MODE ?= "original"
6810 ARCHIVER_CLASS = "${@'archive-${ARCHIVER_MODE}-source' if 6810 ARCHIVER_CLASS = "${@'archive-${ARCHIVER_MODE}-source' if ARCHIVER_MODE != 'none' else ''}"
6811 ARCHIVER_MODE != 'none' else ''}"
6812 INHERIT += "${ARCHIVER_CLASS}" 6811 INHERIT += "${ARCHIVER_CLASS}"
6813 SOURCE_ARCHIVE_PACKAGE_TYPE = "tar" 6812 SOURCE_ARCHIVE_PACKAGE_TYPE = "tar"
6814 </literallayout> 6813 </literallayout>