From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (dan.rpsys.net [93.97.175.187]) by mail.openembedded.org (Postfix) with ESMTP id AA9516CA7E for ; Mon, 4 Nov 2013 13:32:11 +0000 (UTC) Received: from localhost (dan.rpsys.net [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id rA4DW0KC013292; Mon, 4 Nov 2013 13:32:00 GMT X-Virus-Scanned: Debian amavisd-new at dan.rpsys.net Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HeshFzkJCD31; Mon, 4 Nov 2013 13:32:00 +0000 (GMT) Received: from [192.168.3.10] (rpvlan0 [192.168.3.10]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id rA4DVv0A013268 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Mon, 4 Nov 2013 13:31:59 GMT Message-ID: <1383571913.6271.118.camel@ted> From: Richard Purdie To: Paul Eggleton Date: Mon, 04 Nov 2013 13:31:53 +0000 In-Reply-To: <1557371.bvju1MZl3L@helios> References: <1383358116-997-1-git-send-email-raj.khem@gmail.com> <527542CF.5040909@linux.intel.com> <1557371.bvju1MZl3L@helios> X-Mailer: Evolution 3.6.4-0ubuntu1 Mime-Version: 1.0 Cc: openembedded-core@lists.openembedded.org Subject: Re: [PATCH V3] expect: Add recipe X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Nov 2013 13:32:12 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Mon, 2013-11-04 at 10:01 +0000, Paul Eggleton wrote: > On Saturday 02 November 2013 11:22:07 Saul Wold wrote: > > > +DEPENDS = "tcl" > > > +RDEPENDS_${PN} = "tcl" > > > > You don't need an RDEPENDS_${PN} if it matches with the DEPENDS > > For the sake of others reading, it's not as simple as that. DEPENDS is for > build-time dependencies, RDEPENDS is for runtime dependencies; if tcl is > needed both at build time and at runtime, and the runtime dependency isn't a > shared library dependency, it would be valid to have both in the recipe. It > depends on the situation. Just to further confuse things, if you have the RDEPENDS, you don't need the DEPENDS since bitbake can infer that... Cheers, Richard