summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index c943fa6..6549037 100644
--- a/configure.py
+++ b/configure.py
@@ -1039,9 +1039,9 @@ def get_build_macros(overrides):
"""
# Get the name of the tqmake configuration file to take the macros from.
if "QMAKESPEC" in list(os.environ.keys()):
- fname = os.path.join(tqt_dir, "mkspecs", os.environ["QMAKESPEC"], "qmake.conf")
+ fname = os.path.join(tqt_dir, "mkspecs", os.environ["QMAKESPEC"], "tqmake.conf")
else:
- fname = os.path.join(tqt_dir, "mkspecs", "default", "qmake.conf")
+ fname = os.path.join(tqt_dir, "mkspecs", "default", "tqmake.conf")
if not os.access(fname, os.F_OK):
sip_tqt_config.error("Unable to find the default configuration file %s. You can use the QMAKESPEC environment variable to specify the correct platform instead of \"default\"." % fname)