From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by mail.openembedded.org (Postfix) with ESMTP id 9A0167169F for ; Sun, 26 Apr 2015 21:58:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id t3QLvvu9005399; Sun, 26 Apr 2015 22:57:57 +0100 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 frZZFEIers5X; Sun, 26 Apr 2015 22:57:57 +0100 (BST) Received: from [192.168.3.10] ([192.168.3.10]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id t3QLvgYn005390 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT); Sun, 26 Apr 2015 22:57:53 +0100 Message-ID: <1430085461.13022.89.camel@linuxfoundation.org> From: Richard Purdie To: Cristian Iorga Date: Sun, 26 Apr 2015 22:57:41 +0100 In-Reply-To: <1a55976003e57036ced5e47dd031575508dfc87b.1429799661.git.cristian.iorga@intel.com> References: <1a55976003e57036ced5e47dd031575508dfc87b.1429799661.git.cristian.iorga@intel.com> X-Mailer: Evolution 3.12.10-0ubuntu1~14.10.1 Mime-Version: 1.0 Cc: openembedded-core@lists.openembedded.org Subject: Re: [PATCH v5 4/4] bluez5: don't exclude from world builds 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: Sun, 26 Apr 2015 21:58:03 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Thu, 2015-04-23 at 17:38 +0300, Cristian Iorga wrote: > As BlueZ5 will be the default Bluetooth stack, > don't exclude it from world builds. > > Signed-off-by: Cristian Iorga > --- > meta/recipes-connectivity/bluez5/bluez5.inc | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc > index 67aafbb..bf845a8 100644 > --- a/meta/recipes-connectivity/bluez5/bluez5.inc > +++ b/meta/recipes-connectivity/bluez5/bluez5.inc > @@ -100,5 +100,3 @@ FILES_${PN}-dbg += "\ > RDEPENDS_${PN}-testtools += "python python-dbus python-pygobject" > > SYSTEMD_SERVICE_${PN} = "bluetooth.service" > - > -EXCLUDE_FROM_WORLD = "1" The reason this is there is to ensure that a bitbake world doesn't build bluez4 and 5 at the same time. Even though v4 is moving to meta-oe, it doesn't change the fact we really need this so world builds don't end up in a mess. Typically, any recipe providing a vritual/xxxx PROVIDES will also end up with an EXCLUDE_FROM_WORLD as the dependency mechanism will then pull in the correct thing(s). Not ideal but its what we have today. Cheers, Richard