diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-30 22:57:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-30 23:00:19 +0000 |
commit | 8ed16b26dfefac4b42766b9f7090bb3b76110fe3 (patch) | |
tree | b636ba2d12d2ac6cd4f7feef2d2d64423ce81484 | |
parent | 36654d6d393cb8c8a545835184a96be4ae0c885d (diff) | |
download | openembedded-core-8ed16b26dfefac4b42766b9f7090bb3b76110fe3.tar.gz openembedded-core-8ed16b26dfefac4b42766b9f7090bb3b76110fe3.tar.bz2 openembedded-core-8ed16b26dfefac4b42766b9f7090bb3b76110fe3.zip |
consolekit: Fix ${localstatedir} race
The change adding ${localstatedir}/log to the package caused failures
on meta-toolchain-gmae builds since ${localstatedir} might be a
symlink and it can be installation order dependent.
By adding in the RDEPENDS, we defer to base-files to ensure
the layout is correct and that packages install correctly.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/consolekit/consolekit_0.4.5.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/consolekit/consolekit_0.4.5.bb b/meta/recipes-support/consolekit/consolekit_0.4.5.bb index a02203c3d4..45f6ad35a9 100644 --- a/meta/recipes-support/consolekit/consolekit_0.4.5.bb +++ b/meta/recipes-support/consolekit/consolekit_0.4.5.bb @@ -2,13 +2,14 @@ DESCRIPTION = "ConsoleKit is a framework for defining and tracking users, login HOMEPAGE="http://www.freedesktop.org/wiki/Software/ConsoleKit" BUGTRACKER="https://bugs.freedesktop.org/buglist.cgi?query_format=specific&product=ConsoleKit" -PR = "r6" +PR = "r7" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3" DEPENDS = "glib-2.0 dbus polkit ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" +RDEPENDS_${PN} += "base-files" inherit gnome |