summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/qtpatchoperation.cpp
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2013-02-05 12:17:16 +0100
committerKarsten Heimrich <karsten.heimrich@digia.com>2013-02-07 13:58:57 +0100
commited932ce65049a1d07c17be70da5a62dc0ad75de9 (patch)
treea2b695fd1356316929e77e6d53c84e34438c61d5 /src/libs/installer/qtpatchoperation.cpp
parente8fa991b53f00f4ae5822ea879b64505ceca5b4c (diff)
Fix patching of QT_INSTALL_LIBEXECS
qt_lbexpath=%1/lib should be qt_lbexpath=%1/libexec (cherry-picked from commit e16a779736d32b48bc0134112645da7815070e4b) Change-Id: I1dbd9506f4687f00ff2dba97146a34985bb1e650 Reviewed-by: Kai Koehne <kai.koehne@digia.com> Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'src/libs/installer/qtpatchoperation.cpp')
-rw-r--r--src/libs/installer/qtpatchoperation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/qtpatchoperation.cpp b/src/libs/installer/qtpatchoperation.cpp
index 76d7c8f54..da828fd9b 100644
--- a/src/libs/installer/qtpatchoperation.cpp
+++ b/src/libs/installer/qtpatchoperation.cpp
@@ -85,7 +85,7 @@ static QHash<QByteArray, QByteArray> generatePatchValueHash(const QByteArray &ne
oldValue = qmakeValueHash.value(QLatin1String("QT_INSTALL_LIBEXECS"));
replaceHash.insert(QByteArray("qt_lbexpath=%1").replace("%1", oldValue),
- QByteArray("qt_lbexpath=%1/lib").replace("%1/", newQtPath + nativeSeperator));
+ QByteArray("qt_lbexpath=%1/libexec").replace("%1/", newQtPath + nativeSeperator));
oldValue = qmakeValueHash.value(QLatin1String("QT_INSTALL_BINS"));
replaceHash.insert(QByteArray("qt_binspath=%1").replace("%1", oldValue),