mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
binutils/gcc/gdb: Add TARGET_ARCH to PN for all cross recipes
This allows them to co-exist together in the native sysroot, with one set of cross tools per target architecture. (From OE-Core rev: a2c5509520d5c3e082f55844e6545d0309565f8f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -158,7 +158,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}-%s.populate_sysroot" % c)
|
||||
elif c.endswith("-cross") or c.endswith("-cross-initial") or c.endswith("-crosssdk") or c.endswith("-crosssdk-initial"):
|
||||
elif "-cross-" in c or "-crosssdk-" in c:
|
||||
continue
|
||||
else:
|
||||
manifest = d.expand("${SSTATE_MANIFESTS}/manifest-${MACHINE}-%s.populate_sysroot" % c)
|
||||
|
||||
Reference in New Issue
Block a user