By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1790
Collapse All | Expand All

(-)b/configure.py (-2 / +4 lines)
Lines 73-79 Link Here
73
opt_qtlib = None
73
opt_qtlib = None
74
opt_qconfigdir = None
74
opt_qconfigdir = None
75
opt_pyqtbindir = sipcfg.default_bin_dir
75
opt_pyqtbindir = sipcfg.default_bin_dir
76
opt_pyqtmoddir = sipcfg.default_mod_dir
76
opt_pyqtmoddir = os.path.join(sipcfg.default_mod_dir, "python_tqt")
77
opt_pyqtsipdir = sipcfg.default_sip_dir
77
opt_pyqtsipdir = sipcfg.default_sip_dir
78
opt_qtpetag = None
78
opt_qtpetag = None
79
opt_qsciincdir = None
79
opt_qsciincdir = None
Lines 184-190 Link Here
184
        """Return a list of files to install in the module directory other than
184
        """Return a list of files to install in the module directory other than
185
        the modules themselves.
185
        the modules themselves.
186
        """
186
        """
187
        return ["pyqtconfig.py"]
187
        return ["__init__.py", "pyqtconfig.py"]
188
188
189
    def sip_dir(self):
189
    def sip_dir(self):
190
        """Return the configuration's .sip files directory.
190
        """Return the configuration's .sip files directory.
Lines 1449-1454 Link Here
1449
    # Create the additional Makefiles.
1449
    # Create the additional Makefiles.
1450
    sipconfig.inform("Creating top level Makefile...")
1450
    sipconfig.inform("Creating top level Makefile...")
1451
1451
1452
    open('__init__.py', 'a').close()
1453
1452
    sipconfig.ParentMakefile(
1454
    sipconfig.ParentMakefile(
1453
        configuration=sipcfg,
1455
        configuration=sipcfg,
1454
        subdirs=pyqt_modules + pyqt.tools(),
1456
        subdirs=pyqt_modules + pyqt.tools(),

Return to bug 1790