mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-22 05:01:26 +00:00
Fixes Bug 2938 (#9)
Adds support for x86_64 system arch with packages of i686 arch
This commit is contained in:
parent
d77bb43a77
commit
b336ffa23c
@ -276,7 +276,10 @@ async def get_updateinfo(
|
|||||||
if p_name not in pkg_src_rpm:
|
if p_name not in pkg_src_rpm:
|
||||||
continue
|
continue
|
||||||
if arch != product_arch and arch != "noarch":
|
if arch != product_arch and arch != "noarch":
|
||||||
continue
|
if arch != "x86_64":
|
||||||
|
continue
|
||||||
|
if arch == "x86_64" and product_arch != "i686":
|
||||||
|
continue
|
||||||
|
|
||||||
skip = False
|
skip = False
|
||||||
for suffix in suffixes_to_skip:
|
for suffix in suffixes_to_skip:
|
||||||
|
Loading…
Reference in New Issue
Block a user