Ticket #56092: pyqt4_ppc64.patch
File pyqt4_ppc64.patch, 874 bytes (added by sideeffect42 (Dennis Camera), 7 years ago) |
---|
-
configure.py
206 206 if sys.platform == 'darwin': 207 207 g = optparse.OptionGroup(p, title="MacOS X Configuration") 208 208 g.add_option("--use-arch", action="append", metavar="ARCH", 209 dest="use_arch", choices=["i386", "x86_64", "ppc" ],209 dest="use_arch", choices=["i386", "x86_64", "ppc", "ppc64"], 210 210 help="add ARCH to the list of architectures to use when " 211 211 "running pyuic4 [default: system default]") 212 212 p.add_option_group(g) … … 1048 1048 qmake_archs.append('x86_64') 1049 1049 elif a == 'ppc': 1050 1050 qmake_archs.append('ppc') 1051 elif a == 'ppc64': 1052 qmake_archs.append('ppc64') 1051 1053 1052 1054 return 'CONFIG += %s\n' % ' '.join(qmake_archs) 1053 1055