From ff2461df9def882b87e2024fae9e4219a896b8af Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Wed, 20 Jan 2010 15:22:25 +0100 Subject: [PATCH] Fix the configure script so that the --64bit flag works. --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index e9e586be..99324873 100644 --- a/configure.py +++ b/configure.py @@ -38,7 +38,7 @@ if __name__ == '__main__': 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, 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.") (options, args) = parser.parse_args() main(options.edition, options.ui, options.dev, options.build64)