-rw-r--r-- | qmake/project.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/project.cpp b/qmake/project.cpp index 96cdad8..44eb503 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp | |||
@@ -445,13 +445,13 @@ QMakeProject::read(QString project, QString) | |||
445 | 445 | ||
446 | if (getenv("QTDIR")) { | 446 | if (getenv("QTDIR")) { |
447 | mkspec_roots << getenv("QTDIR"); | 447 | mkspec_roots << getenv("QTDIR"); |
448 | } | 448 | } |
449 | mkspec_roots << qInstallPathData(); | 449 | mkspec_roots << qInstallPathData(); |
450 | 450 | ||
451 | if (getenv("QMAKESPECSDIR")){ | 451 | if (Option::mkfile::qmakespec.isEmpty() && getenv("QMAKESPECSDIR")){ |
452 | QString mkspec = QString(getenv("QMAKESPECSDIR")) + QDir::separator() + | 452 | QString mkspec = QString(getenv("QMAKESPECSDIR")) + QDir::separator() + |
453 | QDir::separator() + "default"; | 453 | QDir::separator() + "default"; |
454 | if(QFile::exists(mkspec)) | 454 | if(QFile::exists(mkspec)) |
455 | Option::mkfile::qmakespec = mkspec; | 455 | Option::mkfile::qmakespec = mkspec; |
456 | } | 456 | } |
457 | 457 | ||