Calculate the i586 DVD as i686 package set
mozjs is now i686 exclusive and GNOME and KDE depends on it
This commit is contained in:
parent
75c001c96d
commit
ad9119d4b2
@ -189,7 +189,11 @@ class PkgListGen(ToolBase.ToolBase):
|
||||
|
||||
def prepare_pool(self, arch, ignore_conflicts):
|
||||
pool = solv.Pool()
|
||||
pool.setarch(arch)
|
||||
# the i586 DVD is really a i686 one
|
||||
if arch == 'i586':
|
||||
pool.setarch('i686')
|
||||
else:
|
||||
pool.setarch(arch)
|
||||
|
||||
self.lockjobs[arch] = []
|
||||
solvables = set()
|
||||
|
Loading…
x
Reference in New Issue
Block a user