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:25 +0000 |
commit | f340e3937fd5ac3963de6c6b29d56dd92d962864 (patch) | |
tree | 77683842cfbbd662591562edf10b1695554e4e07 /meta/recipes-support | |
parent | 73861c8053027572c03189771d967ae166bfe9e8 (diff) | |
download | poky-f340e3937fd5ac3963de6c6b29d56dd92d962864.tar.gz |
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.
(From OE-Core rev: 8ed16b26dfefac4b42766b9f7090bb3b76110fe3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-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 | |||
2 | HOMEPAGE="http://www.freedesktop.org/wiki/Software/ConsoleKit" | 2 | HOMEPAGE="http://www.freedesktop.org/wiki/Software/ConsoleKit" |
3 | BUGTRACKER="https://bugs.freedesktop.org/buglist.cgi?query_format=specific&product=ConsoleKit" | 3 | BUGTRACKER="https://bugs.freedesktop.org/buglist.cgi?query_format=specific&product=ConsoleKit" |
4 | 4 | ||
5 | PR = "r6" | 5 | PR = "r7" |
6 | 6 | ||
7 | LICENSE = "GPLv2+" | 7 | LICENSE = "GPLv2+" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ |
9 | file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3" | 9 | file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3" |
10 | 10 | ||
11 | DEPENDS = "glib-2.0 dbus polkit ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" | 11 | DEPENDS = "glib-2.0 dbus polkit ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" |
12 | RDEPENDS_${PN} += "base-files" | ||
12 | 13 | ||
13 | inherit gnome | 14 | inherit gnome |
14 | 15 | ||