diff --git a/src/plugins/qt4projectmanager/qtversionmanager.cpp b/src/plugins/qt4projectmanager/qtversionmanager.cpp index 0aba0c2571e..921bbf4f270 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.cpp +++ b/src/plugins/qt4projectmanager/qtversionmanager.cpp @@ -1768,6 +1768,8 @@ QString QtVersion::invalidReason() const "Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong?"); if (m_abiUpToDate && m_mkspecFullPath.isEmpty()) return QCoreApplication::translate("QtVersion", "The default mkspec symlink is broken."); + if (m_abiUpToDate && m_abis.isEmpty()) + return QCoreApplication::translate("QtVersion", "Failed to detect the ABI(s) used by the Qt version."); return QString(); }