From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 93-97-173-237.zone5.bethere.co.uk ([93.97.173.237] helo=tim.rpsys.net) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1RqimV-0005Gm-7L for openembedded-core@lists.openembedded.org; Fri, 27 Jan 2012 11:11:43 +0100 Received: from localhost (localhost [127.0.0.1]) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id q0RA3sdL006803 for ; Fri, 27 Jan 2012 10:03:54 GMT Received: from tim.rpsys.net ([127.0.0.1]) by localhost (tim.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 06380-06 for ; Fri, 27 Jan 2012 10:03:50 +0000 (GMT) Received: from [192.168.3.10] ([192.168.3.10]) (authenticated bits=0) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id q0RA3kmH006797 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 27 Jan 2012 10:03:47 GMT Message-ID: <1327658629.19643.445.camel@ted> From: Richard Purdie To: Patches and discussions about the oe-core layer Date: Fri, 27 Jan 2012 10:03:49 +0000 In-Reply-To: <4F21AA1B.6030603@mentor.com> References: <4F1F26C6.8050501@mentor.com> <4F21A9CF.3020103@mentor.com> <4F21AA1B.6030603@mentor.com> X-Mailer: Evolution 3.2.2- Mime-Version: 1.0 X-Virus-Scanned: amavisd-new at rpsys.net Subject: Re: [PATCH v2 2/3] systemtap: extend the recipe to build the native package X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jan 2012 10:11:43 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Thu, 2012-01-26 at 12:31 -0700, Wade Farnsworth wrote: > Since the target image may not contain dev tools, it is useful to > provide native systemtap in order to be able to compile systemtap > scripts for the target. > > Signed-off-by: Wade Farnsworth > --- > meta/recipes-kernel/systemtap/systemtap_git.bb | 8 ++++++-- > 1 files changed, 6 insertions(+), 2 deletions(-) > > diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb > index 7172386..298e005 100644 > --- a/meta/recipes-kernel/systemtap/systemtap_git.bb > +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb > @@ -2,10 +2,12 @@ DESCRIPTION = "SystemTap - script-directed dynamic tracing and performance analy > LICENSE = "GPLv2" > LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" > > -DEPENDS = "elfutils sqlite3" > +DEPENDS = "elfutils sqlite3 systemtap-native" > +DEPENDS_virtclass-native = "elfutils sqlite3 gettext-native" > +DEPENDS_virtclass-nativesdk = "elfutils sqlite3 gettext-native" This looks wrong, a -native shouldn't be depending on a non-native recipe? (likewise -nativesdk, shouldn't those be -nativesdk dependencies?) Cheers, Richard