[OE-core] [PATCH 2/2] logrotate: add packageconfigs

2014-08-25 Thread Fahad Usman
add packageconfigs for acl and selinux. Signed-off-by: Fahad Usman Signed-off-by: Christopher Larson --- meta/recipes-extended/logrotate/logrotate_3.8.7.bb |8 1 file changed, 8 insertions(+) diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.7.bb b/meta/recipes-extended/

Re: [OE-core] [PATCH 2/2] logrotate: add packageconfigs

2014-08-27 Thread Burton, Ross
On 25 August 2014 17:22, Fahad Usman wrote: > +${@base_contains('PACKAGECONFIG', 'acl', 'WITH_ACL=yes', '', d)} \ > +${@base_contains('PACKAGECONFIG', 'selinux', 'WITH_SELINUX=yes', '', d)} > \ Should this have WITH_XXX=no for clarity and safety? Ross -- ___

Re: [OE-core] [PATCH 2/2] logrotate: add packageconfigs

2014-08-27 Thread Christopher Larson
On Wed, Aug 27, 2014 at 8:52 AM, Burton, Ross wrote: > On 25 August 2014 17:22, Fahad Usman wrote: > > +${@base_contains('PACKAGECONFIG', 'acl', 'WITH_ACL=yes', '', d)} \ > > +${@base_contains('PACKAGECONFIG', 'selinux', 'WITH_SELINUX=yes', > '', d)} \ > > Should this have WITH_XXX=no fo