summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/ref-variables.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-11-19 09:44:37 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-03 12:54:00 +0000
commit04ee6741633c67db12bae26b8d095ef613c126e0 (patch)
tree8c39e6095b7225aa7b3d43e8c46b65546af56764 /documentation/ref-manual/ref-variables.xml
parent3cd74158dd4556a89ea3f66c7fd6f6c93c5a6c15 (diff)
downloadpoky-04ee6741633c67db12bae26b8d095ef613c126e0.tar.gz
ref-manual: Expanded CLASSOVERRIDE variable example description.
(From yocto-docs rev: f78cfbd4bd06f4dbf35522f2fd4b2012de889323) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/ref-variables.xml')
-rw-r--r--documentation/ref-manual/ref-variables.xml16
1 files 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 @@
320 320
321 <para> 321 <para>
322 You can change the default behavior by setting this 322 You can change the default behavior by setting this
323 variable to "1", "yes", or "true" 323 variable to "1", "yes", or "true"
324 in your <filename>local.conf</filename> file, which is 324 in your <filename>local.conf</filename> file, which is
325 located in the 325 located in the
326 <ulink url='&YOCTO_DOCS_DEV_URL;#build-directory'>Build Directory</ulink>: 326 <ulink url='&YOCTO_DOCS_DEV_URL;#build-directory'>Build Directory</ulink>:
327 Here is an example: 327 Here is an example:
@@ -829,7 +829,7 @@
829 <glossentry id='var-BUGTRACKER'><glossterm>BUGTRACKER</glossterm> 829 <glossentry id='var-BUGTRACKER'><glossterm>BUGTRACKER</glossterm>
830 <glossdef> 830 <glossdef>
831 <para> 831 <para>
832 Specifies a URL for an upstream bug tracking website for 832 Specifies a URL for an upstream bug tracking website for
833 a recipe. 833 a recipe.
834 The OpenEmbedded build system does not use this variable. 834 The OpenEmbedded build system does not use this variable.
835 Rather, the variable is a useful pointer in case a bug 835 Rather, the variable is a useful pointer in case a bug
@@ -893,19 +893,21 @@
893 <glossdef> 893 <glossdef>
894 <para> 894 <para>
895 An internal variable specifying the special class override 895 An internal variable specifying the special class override
896 that should currently apply (e.g. "class-target", 896 that should currently apply (e.g. "class-target",
897 "class-native", and so forth). 897 "class-native", and so forth).
898 The classes that use this variable set it to 898 The classes that use this variable set it to
899 appropriate values. 899 appropriate values.
900 </para> 900 </para>
901 901
902 <para> 902 <para>
903 You do not normally directly interact with this variable. 903 You do not normally directly interact with this variable.
904 The value for the <filename>CLASSOVERRIDE</filename> 904 The value for the <filename>CLASSOVERRIDE</filename>
905 variable goes into 905 variable goes into
906 <link linkend='var-OVERRIDES'><filename>OVERRIDES</filename></link> 906 <link linkend='var-OVERRIDES'><filename>OVERRIDES</filename></link>
907 and then can be used as an override. 907 and then can be used as an override.
908 Here is an example: 908 Here is an example where "python-native" is added to
909 <link linkend='var-DEPENDS'><filename>DEPENDS</filename></link>
910 only when building for the native case:
909 <literallayout class='monospaced'> 911 <literallayout class='monospaced'>
910 DEPENDS_append_class-native = " python-native" 912 DEPENDS_append_class-native = " python-native"
911 </literallayout> 913 </literallayout>