[FE training-materials-updates] yocto: slides: explicitly specify that RDEPENDS is package specific

Antoine Ténart antoine.tenart at free-electrons.com
Mon Nov 24 17:20:37 CET 2014


Repository : git://git.free-electrons.com/training-materials.git

On branch  : master
Link       : http://git.free-electrons.com/training-materials/commit/?id=781427887f6eb7bcc2534bf2e079edf236eee2e8

>---------------------------------------------------------------

commit 781427887f6eb7bcc2534bf2e079edf236eee2e8
Author: Antoine Tenart <antoine.tenart at free-electrons.com>
Date:   Mon Nov 24 12:12:44 2014 +0100

    yocto: slides: explicitly specify that RDEPENDS is package specific
    
    Signed-off-by: Antoine Tenart <antoine.tenart at free-electrons.com>


>---------------------------------------------------------------

781427887f6eb7bcc2534bf2e079edf236eee2e8
 slides/yocto-recipe-advanced/yocto-recipe-advanced.tex | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex b/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex
index a130010..ee2d986 100644
--- a/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex
+++ b/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex
@@ -111,14 +111,15 @@ SRC_URI += "file://custom-modification-0.patch \
     \begin{description}
       \item[DEPENDS] List of the package build-time dependencies.
       \item[RDEPENDS] List of the package runtime
-        dependencies.
+        dependencies. Must be package specific (e.g. with
+        \code{_${PN}}).
     \end{description}
     \item \code{DEPENDS = "package_b"}: the local \code{do_configure}
       task depends on the \code{do_populate_sysroot} task of package
       b.
-    \item \code{RDEPENDS = "package_b"}: the local \code{do_build}
-      task depends on the \code{do_package_write_<archive-format>}
-      task of package b.
+    \item \code{RDEPENDS_${PN} = "package_b"}: the local
+      \code{do_build} task depends on the
+      \code{do_package_write_<archive-format>} task of package b.
   \end{itemize}
 \end{frame}
 



More information about the training-materials-updates mailing list