From 04ee6741633c67db12bae26b8d095ef613c126e0 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Tue, 19 Nov 2013 09:44:37 -0800 Subject: [PATCH] ref-manual: Expanded CLASSOVERRIDE variable example description. (From yocto-docs rev: f78cfbd4bd06f4dbf35522f2fd4b2012de889323) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 1ff1ed7559..b1dd97a138 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -320,8 +320,8 @@ You can change the default behavior by setting this - variable to "1", "yes", or "true" - in your local.conf file, which is + variable to "1", "yes", or "true" + in your local.conf file, which is located in the Build Directory: Here is an example: @@ -829,7 +829,7 @@ BUGTRACKER - Specifies a URL for an upstream bug tracking website for + Specifies a URL for an upstream bug tracking website for a recipe. The OpenEmbedded build system does not use this variable. Rather, the variable is a useful pointer in case a bug @@ -893,19 +893,21 @@ An internal variable specifying the special class override - that should currently apply (e.g. "class-target", + that should currently apply (e.g. "class-target", "class-native", and so forth). - The classes that use this variable set it to + The classes that use this variable set it to appropriate values. You do not normally directly interact with this variable. The value for the CLASSOVERRIDE - variable goes into + variable goes into OVERRIDES and then can be used as an override. - Here is an example: + Here is an example where "python-native" is added to + DEPENDS + only when building for the native case: DEPENDS_append_class-native = " python-native"