[PyQt] Patch that fixes linking of PyQt with debug version of Qt libraries
Ilya Kulakov
kulakov.ilya at gmail.com
Sat Oct 10 18:43:54 BST 2015
--- configure.py
+++ configure.py
@@ -853,6 +853,10 @@
if opts.qmakespec is not None:
self.qmake_spec = opts.qmakespec
+ if opts.debug:
+ self.debug = True
+
+
def apply_post_options(self, opts):
""" Apply options from the command line that override the previous
configuration. opts are the command line options.
@@ -863,9 +867,6 @@
if opts.bindir is not None:
self.pyqt_bin_dir = opts.bindir
-
- if opts.debug:
- self.debug = True
if opts.designerplugindir is not None:
self.designer_plugin_dir = opts.designerplugindir
More information about the PyQt
mailing list