diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2016-02-22 15:44:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-26 17:15:07 +0000 |
commit | 25ca768112f37a7fd8648f0d983e856294863460 (patch) | |
tree | 04cf6c5c85b3c860c876e0b66c0ddbceb3a39904 /meta/recipes-graphics/mesa | |
parent | 205b446f3fc4a9885179a66a8dab9d81bcc63dca (diff) | |
download | openembedded-core-25ca768112f37a7fd8648f0d983e856294863460.tar.gz openembedded-core-25ca768112f37a7fd8648f0d983e856294863460.tar.bz2 openembedded-core-25ca768112f37a7fd8648f0d983e856294863460.zip |
mesa: add missing space to RRECOMMENDS append
Fixes errors as:
| Missing or unbuildable dependency chain was: ['mesa-megadrivermesa-megadriver']
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 5ce96dd965..442479ae62 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc @@ -121,7 +121,7 @@ python __anonymous() { d.appendVar("RPROVIDES_" + fullp, pkgs) d.appendVar("RCONFLICTS_" + fullp, pkgs) - d.appendVar("RRECOMMENDS_" + fullp, "mesa-megadriver") + d.appendVar("RRECOMMENDS_" + fullp, " mesa-megadriver") # For -dev, the first element is both the Debian and original name fullp += "-dev" |