From patchwork Wed Oct 17 14:39:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Morten Svendsen X-Patchwork-Id: 192070 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 E92DF2C0096 for ; Thu, 18 Oct 2012 01:40:15 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 901CA40192 for ; Wed, 17 Oct 2012 16:40:14 +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 ED3823FEF9 for ; Wed, 17 Oct 2012 16:40:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=654; q=dns/txt; s=ironport1; t=1350484811; x=1382020811; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=IxXZprS/0pBcO3qTZ07SZU36co/6wvb475oF9+aps70=; b=R360fenuMYAnBUJvw03q+aV1+sAoIVKt/9mwVnNWnrfgpp15qEHUURSk BUiHwohto2JVjaTK7fLWVhY1EOBLyNmylt50iSbyOVDU7gcduNf6crvaL KG6Wg2n40kHggXU; X-IronPort-AV: E=Sophos;i="4.80,601,1344204000"; d="scan'208";a="2427407" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 17 Oct 2012 16:40:10 +0200 Received: from fire.prevas.dk (172.16.10.61) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server (TLS) id 14.2.318.1; Wed, 17 Oct 2012 16:40:10 +0200 From: Morten Thunberg Svendsen To: Subject: [PATCH 8/9] libnl: Add build dependencies Date: Wed, 17 Oct 2012 16:39:56 +0200 Message-ID: <676f60ed27f9eefa634992ee195d6bcff79135ad.1350484529.git.morten.thunbergsvendsen@prevas.dk> X-Mailer: git-send-email 1.7.10 In-Reply-To: References: MIME-Version: 1.0 X-Originating-IP: [172.16.10.61] 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: Jacob Barsøe Kjærgaard added lib dependencies for correct staging of dependent recipes. --- recipes/libnl/libnl.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/libnl/libnl.inc b/recipes/libnl/libnl.inc index 6267397..312e3a6 100644 --- a/recipes/libnl/libnl.inc +++ b/recipes/libnl/libnl.inc @@ -5,6 +5,7 @@ LICENSE = "LGPLv2.1" inherit autotools-autoreconf pkgconfig auto-package-libs auto-package-utils DEPENDS += "libm libpthread libdl" +DEPENDS_${PN} += "libm libpthread libdl" SRC_URI = "http://www.infradead.org/~tgr/${PN}/files/${PN}-${PV}.tar.gz"