summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/ref-variables.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-04-01 15:18:09 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-04 15:20:16 +0100
commit583b6a45273e1c71ce39427b670612550612bc70 (patch)
tree37f2d87d7101e5447f94e31b9d28bc422a2e4733 /documentation/ref-manual/ref-variables.xml
parent2741cd5e29f64a7ce59f008188da4dde6ec87f42 (diff)
downloadpoky-583b6a45273e1c71ce39427b670612550612bc70.tar.gz
ref-manual: Edits to RDEPENDS variable.
The do_package_write task has been removed leaving only do_package_write_* tasks. This variable description had an example using that obsoleted name. I changed it to do_package_write_ipk. (From yocto-docs rev: ec1c33a867f539cd83d672845075f2437cd917ed) 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-variables.xml')
-rw-r--r--documentation/ref-manual/ref-variables.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 8fcf5fbcc2..48f8965f7f 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -5813,7 +5813,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
5813 <filename>do_build</filename> task depends on the existence 5813 <filename>do_build</filename> task depends on the existence
5814 of a specific package. 5814 of a specific package.
5815 Consider this simple example for two recipes named "a" and 5815 Consider this simple example for two recipes named "a" and
5816 "b" that produce similarly named packages. 5816 "b" that produce similarly named IPK packages.
5817 In this example, the <filename>RDEPENDS</filename> 5817 In this example, the <filename>RDEPENDS</filename>
5818 statement appears in the "a" recipe: 5818 statement appears in the "a" recipe:
5819 <literallayout class='monospaced'> 5819 <literallayout class='monospaced'>
@@ -5821,13 +5821,13 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
5821 </literallayout> 5821 </literallayout>
5822 Here, the dependency is such that the 5822 Here, the dependency is such that the
5823 <filename>do_build</filename> task for recipe "a" depends 5823 <filename>do_build</filename> task for recipe "a" depends
5824 on the <filename>do_package_write</filename> task 5824 on the <filename>do_package_write_ipk</filename> task
5825 of recipe "b". 5825 of recipe "b".
5826 This means the package file for "b" must be available when 5826 This means the package file for "b" must be available when
5827 the output for recipe "a" has been completely built. 5827 the output for recipe "a" has been completely built.
5828 More importantly, package "a" will be marked as depending 5828 More importantly, package "a" will be marked as depending
5829 on package "b" in a manner that is understood by the 5829 on package "b" in a manner that is understood by the
5830 package manager in use (i.e. rpm, opkg, or dpkg). 5830 package manager.
5831 </para> 5831 </para>
5832 5832
5833 <para> 5833 <para>