diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 14:25:49 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 21:12:23 +0100 |
commit | 62477881e8e36fd8cbdc2e4c1a4a8113ca6c4ceb (patch) | |
tree | ceef27c90390a2c4c6561a11ee6ab565efb0a8c3 | |
parent | cbccd7974d44c38f7257f9bd71909505a0d1bb9f (diff) | |
download | poky-62477881e8e36fd8cbdc2e4c1a4a8113ca6c4ceb.tar.gz |
psplash: Fix multilib build
The update-alternatives for multilibs are broken and nothing provides psplash in a
multilib build. This fixes the multilib code.
(From OE-Core rev: db1f6b24ddb2a19fb16b2ebb948bb3274b7ac295)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/psplash/psplash_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb index 2d0cae371d..bbeaa0b3b9 100644 --- a/meta/recipes-core/psplash/psplash_git.bb +++ b/meta/recipes-core/psplash/psplash_git.bb | |||
@@ -56,8 +56,8 @@ python __anonymous() { | |||
56 | ep = '%s%s' % (mlprefix, p) | 56 | ep = '%s%s' % (mlprefix, p) |
57 | epsplash = '%s%s' % (mlprefix, 'psplash') | 57 | epsplash = '%s%s' % (mlprefix, 'psplash') |
58 | d.setVar("FILES_%s" % ep, "${bindir}/%s" % p) | 58 | d.setVar("FILES_%s" % ep, "${bindir}/%s" % p) |
59 | d.setVar("ALTERNATIVE_%s" % ep, epsplash) | 59 | d.setVar("ALTERNATIVE_%s" % ep, 'psplash') |
60 | d.setVarFlag("ALTERNATIVE_TARGET_%s" % ep, epsplash, '${bindir}/%s' % p) | 60 | d.setVarFlag("ALTERNATIVE_TARGET_%s" % ep, 'psplash', '${bindir}/%s' % p) |
61 | d.appendVar("RDEPENDS_%s" % ep, " %s" % pn) | 61 | d.appendVar("RDEPENDS_%s" % ep, " %s" % pn) |
62 | if p == "psplash-default": | 62 | if p == "psplash-default": |
63 | d.appendVar("RRECOMMENDS_%s" % pn, " %s" % ep) | 63 | d.appendVar("RRECOMMENDS_%s" % pn, " %s" % ep) |