use 'lib64' instead of 'lib' on linux/x64_86

This commit is contained in:
hjk
2009-03-23 15:36:15 +01:00
parent 380cb40f27
commit 80468d9986
6 changed files with 22 additions and 8 deletions

View File

@@ -179,7 +179,11 @@ static inline QStringList getPluginPaths()
// 1) "plugins" (Win/Linux)
QString pluginPath = rootDirPath;
pluginPath += QDir::separator();
#ifdef QT_ARCH_X86_64
pluginPath += QLatin1String("lib64");
#else
pluginPath += QLatin1String("lib");
#endif
pluginPath += QDir::separator();
pluginPath += QLatin1String("qtcreator");
pluginPath += QDir::separator();