From: Leonardo Sandoval Date: Fri, 6 Oct 2017 15:10:42 +0000 (-0700) Subject: bitbake: bitbake-user-manual-metadata: include a space on a append example X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a667a8512691735b554029e53aa694d1f63786c3;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- 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 b37da10a90d..0cfa53d02b6 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 @@ DEPENDS = "glibc ncurses" OVERRIDES = "machine:local" - DEPENDS_append_machine = "libmad" + DEPENDS_append_machine = " libmad" In this example, DEPENDS becomes "glibc ncurses libmad".