From patchwork Wed May 7 10:44:08 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: christian.braunersorensen@prevas.dk X-Patchwork-Id: 346536 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [130.225.254.102]) by ozlabs.org (Postfix) with ESMTP id B5EEB140140 for ; Wed, 7 May 2014 20:44:17 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 29DF03FEE3 for ; Wed, 7 May 2014 12:44:15 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id C980F3FEC4 for ; Wed, 7 May 2014 12:44:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=1484; q=dns/txt; s=ironport1; t=1399459453; x=1430995453; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=JvQsiRabhsqkJc3FEqvLIeeBqDwoJxIGK+0Ck5A0yrA=; b=iwIZiqeT5TSumzxTPU0KrhcwMdfimArRMFEqy7sdsTn9UIMUO8aRomhz OsOYP9Z4i0nelMhIqfN8ziQkUra4VxkUSIQk69hnxyxTf3AHT/PlphnSA dEaboU4BFkeHU2rxgSwtpAc3LCs1Z+wuCzDEnzKNNvDqbdH9slzX8HZgU I=; X-IronPort-AV: E=Sophos;i="4.97,1002,1389740400"; d="scan'208";a="4682011" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 07 May 2014 12:44:13 +0200 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.347.0; Wed, 7 May 2014 12:44:12 +0200 Received: by localhost (Postfix, from userid 30007) id BD566681EA7; Wed, 7 May 2014 10:44:12 +0000 (UTC) From: To: Subject: [PATCH 1/4] dhcp/dhcp4: Fix RDEPENDS/DEPENDS. libssl/libcrypto is not needed Date: Wed, 7 May 2014 10:44:08 +0000 Message-ID: <046bca1f1cdf418f44a8ae89001b907bc159d05a.1399459420.git.christian.braunersorensen@prevas.dk> X-Mailer: git-send-email 1.8.4 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Christian Sørensen Replaced COMMON_DEPENDS with libc and libdl. There is no need for the others depends. Signed-off-by: Christian Sørensen --- recipes/dhcp/dhcp4.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/recipes/dhcp/dhcp4.inc b/recipes/dhcp/dhcp4.inc index 417cb9c..68c2fc1 100644 --- a/recipes/dhcp/dhcp4.inc +++ b/recipes/dhcp/dhcp4.inc @@ -80,13 +80,13 @@ FILES_${PN}-relay = "${sbindir}/dhcrelay ${sysconfdir}/init.d/dhcp-relay \ FILES_${PN}-client = "${base_sbindir}/dhclient ${base_sbindir}/dhclient-script \ ${sysconfdir}/dhcp/dhclient.conf" -DEPENDS_${PN}-client = "${COMMON_DEPENDS}" -RDEPENDS_${PN}-client = "sh ${COMMON_DEPENDS}" -DEPENDS_${PN}-server = "libc ${COMMON_DEPENDS}" -RDEPENDS_${PN}-server = "libc ${COMMON_DEPENDS}" -DEPENDS_${PN}-relay = "libc ${COMMON_DEPENDS}" -RDEPENDS_${PN}-relay = "libc ${COMMON_DEPENDS}" -DEPENDS_${PN}-omshell = "libc ${COMMON_DEPENDS}" -RDEPENDS_${PN}-omshell = "libc ${COMMON_DEPENDS}" +DEPENDS_${PN}-client = "libc libdl" +RDEPENDS_${PN}-client = "sh libc libdl" +DEPENDS_${PN}-server = "libc libc libdl" +RDEPENDS_${PN}-server = "libc libc libdl" +DEPENDS_${PN}-relay = "libc libdl" +RDEPENDS_${PN}-relay = "libc libdl" +DEPENDS_${PN}-omshell = "libc libdl" +RDEPENDS_${PN}-omshell = "libc libdl" FILES_${PN}-omshell = "${bindir}/omshell"