summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
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:51 +0000
commit84c2763fa0bf08a83caa2c5ee532b5bef2ff918b (patch)
treef5398943c007986e1b0efaf55182674cb0624f33 /documentation/dev-manual
parente8dfafda71b7340004ce5ecdc60a63d27664ceaf (diff)
downloadpoky-84c2763fa0bf08a83caa2c5ee532b5bef2ff918b.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: 5aaa1e2651ec404af1aea5caa4c9f1f63a760e95) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-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 ae56719529..941550dc24 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -6544,8 +6544,7 @@ the details.
6544 <link linkend='build-directory'>Build Directory</link>: 6544 <link linkend='build-directory'>Build Directory</link>:
6545 <literallayout class='monospaced'> 6545 <literallayout class='monospaced'>
6546 ARCHIVER_MODE ?= "original" 6546 ARCHIVER_MODE ?= "original"
6547 ARCHIVER_CLASS = "${@'archive-${ARCHIVER_MODE}-source' if 6547 ARCHIVER_CLASS = "${@'archive-${ARCHIVER_MODE}-source' if ARCHIVER_MODE != 'none' else ''}"
6548 ARCHIVER_MODE != 'none' else ''}"
6549 INHERIT += "${ARCHIVER_CLASS}" 6548 INHERIT += "${ARCHIVER_CLASS}"
6550 SOURCE_ARCHIVE_PACKAGE_TYPE = "tar" 6549 SOURCE_ARCHIVE_PACKAGE_TYPE = "tar"
6551 </literallayout> 6550 </literallayout>