Remove logic trying to guess whether it should be lib or lib64.

Instead use qmake IDE_LIBRARY_BASENAME=lib64 to set it to lib64.
This commit is contained in:
dt
2009-05-12 16:18:38 +02:00
parent a6705ff8c5
commit a8aa5c8219
2 changed files with 4 additions and 8 deletions

View File

@@ -182,11 +182,7 @@ static inline QStringList getPluginPaths()
// 1) "plugins" (Win/Linux)
QString pluginPath = rootDirPath;
pluginPath += QDir::separator();
#if defined(QT_ARCH_X86_64) && defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
pluginPath += QLatin1String("lib64");
#else
pluginPath += QLatin1String("lib");
#endif
pluginPath += QLatin1String(IDE_LIBRARY_BASENAME);
pluginPath += QDir::separator();
pluginPath += QLatin1String("qtcreator");
pluginPath += QDir::separator();