From 583b6a45273e1c71ce39427b670612550612bc70 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Tue, 1 Apr 2014 15:18:09 -0600 Subject: [PATCH] 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 Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 6 +++--- 1 file 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" do_build 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 RDEPENDS statement appears in the "a" recipe: @@ -5821,13 +5821,13 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" Here, the dependency is such that the do_build task for recipe "a" depends - on the do_package_write task + on the do_package_write_ipk 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.