All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] task-proper-tools.bb: Exclude some packages if DISTRO_FEATURES lacks ipv6.
@ 2010-12-02  0:42 Graham Gower
  2010-12-11 10:14 ` Khem Raj
  0 siblings, 1 reply; 2+ messages in thread
From: Graham Gower @ 2010-12-02  0:42 UTC (permalink / raw)
  To: openembedded-devel

From 3fa2634efe81e5d711a423497e3b76a66a821766 Mon Sep 17 00:00:00 2001
From: Graham Gower <graham.gower@gmail.com>
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 <graham.gower@gmail.com>
---
 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




^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-12-11 10:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-02  0:42 [PATCH] task-proper-tools.bb: Exclude some packages if DISTRO_FEATURES lacks ipv6 Graham Gower
2010-12-11 10:14 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.