Only use lib64 on 64 bit Linux, not Windows or Mac.

This commit is contained in:
con
2009-04-03 14:35:46 +02:00
parent 5266f16cc6
commit 085dcd7db2

View File

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