diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2015-01-12 16:56:27 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-29 15:36:52 +0000 |
commit | 7bc679474095855e716a816fc480cbaa355c058e (patch) | |
tree | 36a5fd77799facb5f987916703dab2981681ddfd | |
parent | 474661b0a0e5fb5dace0b1c3608377244eaaff7d (diff) | |
download | poky-7bc679474095855e716a816fc480cbaa355c058e.tar.gz |
logrotate: fix missing acl and libselinux dependencies
(From OE-Core rev: 3c7d6a4442931aa7e33ee960f554b0eed11160df)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/logrotate/logrotate_3.8.8.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.8.bb b/meta/recipes-extended/logrotate/logrotate_3.8.8.bb index 133f6d7038..00432dede2 100644 --- a/meta/recipes-extended/logrotate/logrotate_3.8.8.bb +++ b/meta/recipes-extended/logrotate/logrotate_3.8.8.bb | |||
@@ -3,6 +3,9 @@ SECTION = "console/utils" | |||
3 | HOMEPAGE = "https://fedorahosted.org/logrotate/" | 3 | HOMEPAGE = "https://fedorahosted.org/logrotate/" |
4 | LICENSE = "GPLv2" | 4 | LICENSE = "GPLv2" |
5 | 5 | ||
6 | # TODO: logrotate 3.8.8 adds autotools/automake support, update recipe to use it. | ||
7 | # TODO: Document coreutils dependency. Why not RDEPENDS? Why not busybox? | ||
8 | |||
6 | DEPENDS="coreutils popt" | 9 | DEPENDS="coreutils popt" |
7 | 10 | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" |
@@ -21,6 +24,9 @@ PACKAGECONFIG ?= "\ | |||
21 | ${@base_contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)} \ | 24 | ${@base_contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)} \ |
22 | " | 25 | " |
23 | 26 | ||
27 | PACKAGECONFIG[acl] = ",,acl" | ||
28 | PACKAGECONFIG[selinux] = ",,libselinux" | ||
29 | |||
24 | # If RPM_OPT_FLAGS is unset, it adds -g itself rather than obeying our | 30 | # If RPM_OPT_FLAGS is unset, it adds -g itself rather than obeying our |
25 | # optimization variables, so use it rather than EXTRA_CFLAGS. | 31 | # optimization variables, so use it rather than EXTRA_CFLAGS. |
26 | EXTRA_OEMAKE = "\ | 32 | EXTRA_OEMAKE = "\ |