mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 18:49:32 +02:00
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. (From OE-Core rev: b6b66f987168615598c980996a1692ca5753b4eb) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -187,7 +187,7 @@ python autotools_copy_aclocals () {
|
|||||||
manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${BUILD_ARCH}-%s.populate_sysroot" % c)
|
manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${BUILD_ARCH}-%s.populate_sysroot" % c)
|
||||||
elif c.startswith("nativesdk-"):
|
elif c.startswith("nativesdk-"):
|
||||||
manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${SDK_ARCH}_${SDK_OS}-%s.populate_sysroot" % c)
|
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
|
continue
|
||||||
else:
|
else:
|
||||||
manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${MACHINE}-%s.populate_sysroot" % c)
|
manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${MACHINE}-%s.populate_sysroot" % c)
|
||||||
|
|||||||
Reference in New Issue
Block a user