All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] autotools: Fix warning for odctools-crosssdk
@ 2014-08-02  8:47 Richard Purdie
  2014-08-02 17:51 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2014-08-02  8:47 UTC (permalink / raw)
  To: openembedded-core

odcctools-crosssdk doesn't use the suffixed naming the rest of crosssdk does
and this results in a annoying build warning. Avoid this.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 2136504..569b2e5 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -187,7 +187,7 @@ python autotools_copy_aclocals () {
             manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${BUILD_ARCH}-%s.populate_sysroot" % c)
         elif c.startswith("nativesdk-"):
             manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${SDK_ARCH}_${SDK_OS}-%s.populate_sysroot" % c)
-        elif "-cross-" in c or "-crosssdk-" in c:
+        elif "-cross-" in c or "-crosssdk" in c:
             continue
         else:
             manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${MACHINE}-%s.populate_sysroot" % c)




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] autotools: Fix warning for odctools-crosssdk
  2014-08-02  8:47 [PATCH] autotools: Fix warning for odctools-crosssdk Richard Purdie
@ 2014-08-02 17:51 ` Khem Raj
  2014-08-03 11:42   ` Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2014-08-02 17:51 UTC (permalink / raw)
  To: Richard Purdie; +Cc: openembedded-core

On Sat, Aug 2, 2014 at 1:47 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> odcctools-crosssdk doesn't use the suffixed naming the rest of crosssdk does
> and this results in a annoying build warning. Avoid this.

why does odcctools behave like that.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] autotools: Fix warning for odctools-crosssdk
  2014-08-02 17:51 ` Khem Raj
@ 2014-08-03 11:42   ` Richard Purdie
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2014-08-03 11:42 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Sat, 2014-08-02 at 10:51 -0700, Khem Raj wrote:
> On Sat, Aug 2, 2014 at 1:47 AM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > odcctools-crosssdk doesn't use the suffixed naming the rest of crosssdk does
> > and this results in a annoying build warning. Avoid this.
> 
> why does odcctools behave like that.

This is the way crosssdk used to behave, it doesn't have some of the
changes we made to cross(sdk) in the core. Given the way its used, there
isn't much point in updating it though.

Cheers,

Richard



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-08-03 11:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-02  8:47 [PATCH] autotools: Fix warning for odctools-crosssdk Richard Purdie
2014-08-02 17:51 ` Khem Raj
2014-08-03 11:42   ` Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.