From 085dcd7db2298aaa310b940b948dfe9ae570883e Mon Sep 17 00:00:00 2001 From: con <qtc-committer@nokia.com> Date: Fri, 3 Apr 2009 14:35:46 +0200 Subject: [PATCH] Only use lib64 on 64 bit Linux, not Windows or Mac. --- src/app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index 655095956a7..69c7aff13d2 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -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"); -- GitLab