From b13381ded17ce65bb9bad783a987afe1102b90e6 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Wed, 28 Nov 2012 14:46:53 +0100 Subject: [PATCH] macdeployqt: Fix deployment of sql driver plugins Task-number: QTBUG-28248 Change-Id: I5e31770a3d31cb22b1ab17574ea38e509c59470d Reviewed-by: Kai Koehne --- src/macdeployqt/shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macdeployqt/shared/shared.cpp b/src/macdeployqt/shared/shared.cpp index 1bb0ef6..d2a1bb1 100644 --- a/src/macdeployqt/shared/shared.cpp +++ b/src/macdeployqt/shared/shared.cpp @@ -524,7 +524,7 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl QStringList sqlPlugins = QDir(pluginSourcePath + QStringLiteral("/sqldrivers")).entryList(QStringList() << QStringLiteral("*.dylib")); foreach (const QString &plugin, sqlPlugins) { if (!plugin.endsWith(QStringLiteral("_debug.dylib"))) - pluginList.append(QStringLiteral("/sqldrivers") + plugin); + pluginList.append(QStringLiteral("sqldrivers/") + plugin); } } -- 2.7.4