summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libs/utils/buildablehelperlibrary.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/utils/buildablehelperlibrary.cpp b/src/libs/utils/buildablehelperlibrary.cpp
index 6037e1d357..670624a20c 100644
--- a/src/libs/utils/buildablehelperlibrary.cpp
+++ b/src/libs/utils/buildablehelperlibrary.cpp
@@ -118,8 +118,8 @@ QStringList BuildableHelperLibrary::possibleQMakeCommands()
// On unix some distributions renamed qmake to avoid clashes
QStringList result;
- result << QLatin1String("qmake-qt4") << QLatin1String("qmake4")
- << QLatin1String("qmake-qt5") << QLatin1String("qmake5") << QLatin1String("qmake");
+ result << QLatin1String("qmake") << QLatin1String("qmake-qt4") << QLatin1String("qmake4")
+ << QLatin1String("qmake-qt5") << QLatin1String("qmake5") ;
return result;
}