mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
base.bbclass: Fix SRC_URI_OVERRIDES_PACKAGE_ARCH handling
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2482 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -845,23 +845,28 @@ def base_after_parse(d):
|
|||||||
if (old_arch == mach_arch):
|
if (old_arch == mach_arch):
|
||||||
# Nothing to do
|
# Nothing to do
|
||||||
return
|
return
|
||||||
override = bb.data.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', d, 1)
|
|
||||||
|
|
||||||
if not override or override == '0':
|
|
||||||
return
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# We always try to scan SRC_URI for urls with machine overrides
|
||||||
|
# unless the package sets SRC_URI_OVERRIDES_PACKAGE_ARCH=0
|
||||||
|
#
|
||||||
|
override = bb.data.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', d, 1)
|
||||||
|
if override == '0':
|
||||||
|
return
|
||||||
|
|
||||||
paths = []
|
paths = []
|
||||||
for p in [ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ]:
|
for p in [ "${PF}", "${P}", "${PN}", "files", "" ]:
|
||||||
paths.append(bb.data.expand(os.path.join(p, mach_arch), d))
|
paths.append(bb.data.expand(os.path.join("${FILE_DIRNAME}", p, "${MACHINE}"), d))
|
||||||
for s in bb.data.getVar('SRC_URI', d, 1).split():
|
for s in bb.data.getVar('SRC_URI', d, 1).split():
|
||||||
|
if not s.startswith("file://"):
|
||||||
|
continue
|
||||||
local = bb.data.expand(bb.fetch.localpath(s, d), d)
|
local = bb.data.expand(bb.fetch.localpath(s, d), d)
|
||||||
for mp in paths:
|
for mp in paths:
|
||||||
if local.startswith(mp):
|
if local.startswith(mp):
|
||||||
#bb.note("overriding PACKAGE_ARCH from %s to %s" % (old_arch, mach_arch))
|
#bb.note("overriding PACKAGE_ARCH from %s to %s" % (old_arch, mach_arch))
|
||||||
bb.data.setVar('PACKAGE_ARCH', mach_arch, d)
|
bb.data.setVar('PACKAGE_ARCH', "${MACHINE_ARCH}", d)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
base_after_parse_two(d)
|
base_after_parse_two(d)
|
||||||
base_after_parse(d)
|
base_after_parse(d)
|
||||||
|
|||||||
Reference in New Issue
Block a user