Fix DVD building on ppc64
ppc64 systems used to have arch == 'ppc', so pungi was only checking to see if arch == 'ppc'. Now that ppc64 is separate from ppc, we need to check if arch.startswith('ppc') instead.
This commit is contained in:
parent
59ff9f9068
commit
0ff7275349
@ -1046,7 +1046,7 @@ class Pungi(pypungi.PungiBase):
|
||||
extraargs.extend(efibootargs)
|
||||
elif self.config.get('pungi', 'arch') == 'ia64':
|
||||
extraargs.extend(ia64bootargs)
|
||||
elif self.config.get('pungi', 'arch') == 'ppc':
|
||||
elif self.config.get('pungi', 'arch').startswith('ppc'):
|
||||
extraargs.extend(ppcbootargs)
|
||||
extraargs.append(os.path.join(self.topdir, "ppc/mac"))
|
||||
elif self.config.get('pungi', 'arch') == 'sparc':
|
||||
|
Loading…
Reference in New Issue
Block a user