From: Richard Purdie Date: Sat, 2 Aug 2014 08:47:33 +0000 (+0100) Subject: autotools: Fix warning for odctools-crosssdk X-Git-Tag: 2015-4~2090 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b6b66f987168615598c980996a1692ca5753b4eb;p=openembedded-core.git autotools: Fix warning for odctools-crosssdk 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 --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 2136504b8d..569b2e5635 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)