diff options
author | Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> | 2017-10-06 08:10:42 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-10-07 23:20:41 +0100 |
commit | a667a8512691735b554029e53aa694d1f63786c3 (patch) | |
tree | 193e4d1b98b390ab7da6f12ce2fc18dbeba51811 | |
parent | 0582b2c6cae43f75a288f082038017a6cc07993a (diff) | |
download | poky-a667a8512691735b554029e53aa694d1f63786c3.tar.gz |
bitbake: bitbake-user-manual-metadata: include a space on a append example
By definition, the override operator "_append" does not include a space,
so include it.
(Bitbake rev: 6775e2de9067d8f472d7bfb5b78ec835a5688755)
Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml index b37da10a90..0cfa53d02b 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | |||
@@ -669,7 +669,7 @@ | |||
669 | <literallayout class='monospaced'> | 669 | <literallayout class='monospaced'> |
670 | DEPENDS = "glibc ncurses" | 670 | DEPENDS = "glibc ncurses" |
671 | OVERRIDES = "machine:local" | 671 | OVERRIDES = "machine:local" |
672 | DEPENDS_append_machine = "libmad" | 672 | DEPENDS_append_machine = " libmad" |
673 | </literallayout> | 673 | </literallayout> |
674 | In this example, <filename>DEPENDS</filename> becomes | 674 | In this example, <filename>DEPENDS</filename> becomes |
675 | "glibc ncurses libmad". | 675 | "glibc ncurses libmad". |