]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: bitbake-user-manual: Fixed override operator syntax.
authorScott Rifenbark <srifenbark@gmail.com>
Thu, 21 Jul 2016 17:51:11 +0000 (10:51 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 2 Aug 2016 14:22:15 +0000 (15:22 +0100)
I had inconsistent usage of the "_append" style operator syntax
in the chaper.  I was using a mix of <filename>_append</filename>
and "_append".  I changed to "_append" for consistency.

(Bitbake rev: 5c5b88e402376268baa15c5d04d2592f28d76751)

Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml

index a3bfce797882339062c131f015a0ebaf689c9e5a..436abd5ec1a6daa2d8833fd2760c7320a27b1f62 100644 (file)
             </para>
 
             <para>
-                Like <filename>_append</filename> and
-                <filename>_prepend</filename>, <filename>_remove</filename>
+                Like "_append" and "_prepend", "_remove"
                 is deferred until after parsing completes.
             </para>
         </section>
                 "_append", "_prepend", and "_remove" as compared to the
                 "+=" and "=+" operators is that the override style
                 operators provide guaranteed operations.
-                For example, consider a class iilename>foo.bbclass</filename>
+                For example, consider a class <filename>foo.bbclass</filename>
                 that needs to add the value "val" to the variable
                 <filename>FOO</filename>, and a recipe that uses
                 <filename>foo.bbclass</filename> as follows:
                 You can define, append, and prepend values to variable flags.
                 All the standard syntax operations previously mentioned work
                 for variable flags except for override style syntax
-                (i.e. <filename>_prepend</filename>, <filename>_append</filename>,
-                and <filename>_remove</filename>).
+                (i.e. "_prepend", "_append", and "_remove").
             </para>
 
             <para>
                 Initially, <filename>A</filename> is set to "1 45" because
                 of the three statements that use immediate operators.
                 After these assignments are made, BitBake applies the
-                <filename>_append</filename> operations.
+                "_append" operations.
                 Those operations result in <filename>A</filename> becoming "1 4523".
             </para>
         </section>