1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

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>
This commit is contained in:
Scott Rifenbark
2014-04-01 15:18:09 -06:00
committed by Richard Purdie
parent 2741cd5e29
commit 583b6a4527
+3 -3
View File
@@ -5813,7 +5813,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
<filename>do_build</filename> task depends on the existence
of a specific package.
Consider this simple example for two recipes named "a" and
"b" that produce similarly named packages.
"b" that produce similarly named IPK packages.
In this example, the <filename>RDEPENDS</filename>
statement appears in the "a" recipe:
<literallayout class='monospaced'>
@@ -5821,13 +5821,13 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
</literallayout>
Here, the dependency is such that the
<filename>do_build</filename> task for recipe "a" depends
on the <filename>do_package_write</filename> task
on the <filename>do_package_write_ipk</filename> task
of recipe "b".
This means the package file for "b" must be available when
the output for recipe "a" has been completely built.
More importantly, package "a" will be marked as depending
on package "b" in a manner that is understood by the
package manager in use (i.e. rpm, opkg, or dpkg).
package manager.
</para>
<para>