From f169ac5da18d55a40d0554668e1a0ace70f94768 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Sat, 2 Sep 2017 10:16:23 -0700 Subject: bitbake-user-manual: Updated inherit and INHERIT sections Fixes [YOCTO #12031] Moved an inappropriate example from the bottom of the INHERIT Configuration Directive section up into the inherit directive section. Updated the example at the end of the INHERIT Configuration Directive section to apply to INHERIT. Signed-off-by: Scott Rifenbark --- .../bitbake-user-manual-metadata.xml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml index 310b9d20d..b2595c93f 100644 --- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml @@ -923,6 +923,14 @@ inherited class within your recipe by doing so after the "inherit" statement. + If you want to use the directive to inherit + multiple classes, you can separate the classes with spaces. + The following example shows how to inherit both the + autotools and pkgconfig + classes: + + inherit autotools pkgconfig + @@ -1076,8 +1084,9 @@ When creating a configuration file (.conf), - you can use the INHERIT directive to - inherit a class. + you can use the + INHERIT + configuration directive to inherit a class. BitBake only supports this directive when used within a configuration file. @@ -1099,8 +1108,7 @@ Because .conf files are parsed first during BitBake's execution, using - INHERIT - to inherit a class effectively + INHERIT to inherit a class effectively inherits the class globally (i.e. for all recipes). If you want to use the directive to inherit @@ -1111,7 +1119,7 @@ autotools and pkgconfig classes: - inherit autotools pkgconfig + INHERIT += "autotools pkgconfig" -- cgit 1.2.3-korg