ppc64le is a new arch that needs to be seperated from all others
ppc64 little endinan is incompatiable with all other ppc64 arches it is only compatiable with noarch, its a new basearch in yum and separated in rpm. this patch makes sure we treat it seperate in koji
This commit is contained in:
parent
e9898a4802
commit
06dd5b93bb
1 changed files with 2 additions and 0 deletions
|
|
@ -913,6 +913,8 @@ def canonArch(arch):
|
|||
return 'i386'
|
||||
elif arch == 'ia32e':
|
||||
return 'x86_64'
|
||||
elif fnmatch(arch,'ppc64le'):
|
||||
return 'ppc64le'
|
||||
elif fnmatch(arch,'ppc64*'):
|
||||
return 'ppc64'
|
||||
elif fnmatch(arch,'sparc64*'):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue