>From 3fa2634efe81e5d711a423497e3b76a66a821766 Mon Sep 17 00:00:00 2001 From: Graham Gower <[email protected]> Date: Thu, 2 Dec 2010 11:10:47 +1030 Subject: [PATCH] task-proper-tools.bb: Exclude some packages if DISTRO_FEATURES lacks ipv6.
Signed-off-by: Graham Gower <[email protected]> --- recipes/tasks/task-proper-tools.bb | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/tasks/task-proper-tools.bb b/recipes/tasks/task-proper-tools.bb index 5162749..bda774c 100644 --- a/recipes/tasks/task-proper-tools.bb +++ b/recipes/tasks/task-proper-tools.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Full versions of tools provided by busybox" -PR = "r15" +PR = "r16" inherit task @@ -21,9 +21,9 @@ RDEPENDS_${PN} = "\ grep \ gzip \ ifupdown \ - iproute2 \ + $...@base_contains('DISTRO_FEATURES', 'ipv6', 'iproute2', '', d)} \ iputils-arping \ - iputils-ping6 \ + $...@base_contains('DISTRO_FEATURES', 'ipv6', 'iputils-ping6', '', d)} \ iputils-ping \ iputils \ less \ -- 1.7.1 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
