mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 05:34:36 +00:00
Fix the configure script so that the --64bit flag works.
This commit is contained in:
parent
192cd2733c
commit
ff2461df9d
@ -38,7 +38,7 @@ if __name__ == '__main__':
|
|||||||
help="Type of UI to build. 'qt' or 'cocoa'. Default is determined by your system.")
|
help="Type of UI to build. 'qt' or 'cocoa'. Default is determined by your system.")
|
||||||
parser.add_option('--dev', action='store_true', dest='dev', default=False,
|
parser.add_option('--dev', action='store_true', dest='dev', default=False,
|
||||||
help="If this flag is set, will configure for dev builds.")
|
help="If this flag is set, will configure for dev builds.")
|
||||||
parser.add_option('--64bit', action='store_false', dest='build64', default=False,
|
parser.add_option('--64bit', action='store_true', dest='build64', default=False,
|
||||||
help="Build 64-bit app if possible.")
|
help="Build 64-bit app if possible.")
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
main(options.edition, options.ui, options.dev, options.build64)
|
main(options.edition, options.ui, options.dev, options.build64)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user