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:
Dennis Gilmore 2014-01-22 17:18:22 -06:00
parent e9898a4802
commit 06dd5b93bb

View file

@ -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*'):