diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-02 09:47:33 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-03 12:39:50 +0100 |
commit | b6b66f987168615598c980996a1692ca5753b4eb (patch) | |
tree | 037cfe4b2c0f9a021d6eb18314854d8f8e30db83 /meta/classes/autotools.bbclass | |
parent | 7a0e1233ba196797f5f9bf862685dfae5511e751 (diff) | |
download | openembedded-core-contrib-b6b66f987168615598c980996a1692ca5753b4eb.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 2136504b8de..569b2e5635d 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) |