diff options
author | Sergio Ahumada <sergio.ahumada@digia.com> | 2013-05-24 20:49:51 +0200 |
---|---|---|
committer | Tim Jenssen <tim.jenssen@digia.com> | 2013-05-27 11:51:47 +0200 |
commit | 5e1f41cd070130d34090be506cc3e239d3159e8b (patch) | |
tree | ae4a41c9fada6b0e2001864e26bf4ade9e94da91 | |
parent | 6dde0f8106b231ace5f89e6fb6519581564f4d98 (diff) |
-rw-r--r-- | src/libs/installer/qtpatchoperation.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libs/installer/qtpatchoperation.cpp b/src/libs/installer/qtpatchoperation.cpp index 7920089f1..8dbbed8b1 100644 --- a/src/libs/installer/qtpatchoperation.cpp +++ b/src/libs/installer/qtpatchoperation.cpp @@ -145,6 +145,10 @@ static QHash<QByteArray, QByteArray> generatePatchValueHash(const QByteArray &ne replaceHash.insert(QByteArray("qt_hdatpath=%1").replace("%1", oldValue), QByteArray("qt_hdatpath=%1/").replace("%1/", newQtPath)); + oldValue = qmakeValueHash.value(QLatin1String("QT_HOST_LIBS")); + replaceHash.insert(QByteArray("qt_hlibpath=%1").replace("%1", oldValue), + QByteArray("qt_hlibpath=%1/lib").replace("%1/", newQtPath)); + return replaceHash; } |