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 08F7F61884 for ; Wed, 29 May 2013 21:10:59 +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 r4TLEmYW023023; Wed, 29 May 2013 22:15:16 +0100 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 I-7Sn66Ght4d; Wed, 29 May 2013 22:15:16 +0100 (BST) 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 r4TLFB5K023085 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Wed, 29 May 2013 22:15:12 +0100 Message-ID: <1369861845.14887.232.camel@ted> From: Richard Purdie To: Mark Hatle Date: Wed, 29 May 2013 22:10:45 +0100 In-Reply-To: <1369840203-21898-19-git-send-email-mark.hatle@windriver.com> References: <1369840203-21898-1-git-send-email-mark.hatle@windriver.com> <1369840203-21898-19-git-send-email-mark.hatle@windriver.com> X-Mailer: Evolution 3.6.4-0ubuntu1 Mime-Version: 1.0 Cc: openembedded-core@lists.openembedded.org Subject: Re: [PATCH 18/21] Fix problems expanding the IMAGE_INSTALL package groups 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: Wed, 29 May 2013 21:11:00 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Wed, 2013-05-29 at 10:10 -0500, Mark Hatle wrote: > From: Jason Wessel > > The ncurses package was generating the following error as a result > of not specifing the PACKAGES_DYNAMIC correctly. This error only > appear when using the IMAGE_INSTALL list that has been expanded by > the hob or from the pkgdata. > > ERROR: Nothing RPROVIDES 'ncurses-libtinfo' > > Signed-off-by: Jason Wessel > Signed-off-by: Mark Hatle > --- > meta/recipes-core/ncurses/ncurses.inc | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc > index 8a81381..584ad46 100644 > --- a/meta/recipes-core/ncurses/ncurses.inc > +++ b/meta/recipes-core/ncurses/ncurses.inc > @@ -29,6 +29,8 @@ BUILD_CPPFLAGS += "-D_GNU_SOURCE" > # natives don't generally look in base_libdir > base_libdir_class-native = "${libdir}" > > +PACKAGES_DYNAMIC = "^${PN}-.*" > + > # Fall back to the host termcap / terminfo for -nativesdk and -native > # The reality is a work around for strange problems with things like > # "bitbake -c menuconfig busybox" where it cannot find the terminfo I'm pretty sure I talked to Jason about this and we concluded this was fixed with some other change in master. Certainly this fix as it stands doesn't sound right. Cheers, Richard