summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-02-01 12:01:19 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-08 12:07:47 -0800
commit25cd1baf8c98e163a4b13ecc673c17ecd0e98d0d (patch)
tree54113d7fc8d326669539952339a26e3d17f1c9fa /documentation/poky-ref-manual
parent2e5e02a9058ca4f3809d14d72cf2adf709d8d285 (diff)
downloadpoky-25cd1baf8c98e163a4b13ecc673c17ecd0e98d0d.tar.gz
documentation/poky-ref-manual/ref-variables.xml: Edits to IMAGE_INSTALL
Minor tweaks to this glossary entry as requested by Richard Purdie. Reported by: Richard Purdie <richard.purdie@intel.com> (From yocto-docs rev: df39b52a89e0ac99d16c8ce1f0f37a284dc5e08a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/poky-ref-manual')
-rw-r--r--documentation/poky-ref-manual/ref-variables.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/documentation/poky-ref-manual/ref-variables.xml b/documentation/poky-ref-manual/ref-variables.xml
index 5b23076533..8da49b2793 100644
--- a/documentation/poky-ref-manual/ref-variables.xml
+++ b/documentation/poky-ref-manual/ref-variables.xml
@@ -670,17 +670,18 @@
670 Since <filename>core-image.bbclass</filename> sets <filename>IMAGE_INSTALL</filename> 670 Since <filename>core-image.bbclass</filename> sets <filename>IMAGE_INSTALL</filename>
671 to a default value using the <filename>?=</filename> operator, using a 671 to a default value using the <filename>?=</filename> operator, using a
672 <filename>+=</filename> operation against <filename>IMAGE_INSTALL</filename> 672 <filename>+=</filename> operation against <filename>IMAGE_INSTALL</filename>
673 previously from the <filename>/conf/local.conf</filename> will almost always fail. 673 will result in unexpected behavior when used in
674 <filename>/conf/local.conf</filename>.
674 Furthermore, the same operation from with an image recipe may or may not 675 Furthermore, the same operation from with an image recipe may or may not
675 succeed depending on the specific situation. 676 succeed depending on the specific situation.
676 In both these cases, the behavior is contrary to how most users expect 677 In both these cases, the behavior is contrary to how most users expect
677 the <filename>+=</filename> append operator to work. 678 the <filename>+=</filename> operator to work.
678 </para> 679 </para>
679 680
680 <para> 681 <para>
681 When you use this variable, it is best to use it as follows: 682 When you use this variable, it is best to use it as follows:
682 <literallayout class='monospaced'> 683 <literallayout class='monospaced'>
683 IMAGE_INSTALL_append " package-name" 684 IMAGE_INSTALL_append = " package-name"
684 </literallayout> 685 </literallayout>
685 Be sure to include the space between the quotation character and the start of the 686 Be sure to include the space between the quotation character and the start of the
686 package name. 687 package name.