summaryrefslogtreecommitdiffstats
path: root/qmake/project.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-07-11 17:13:19 +0200
committerQt by Nokia <qt-info@nokia.com>2011-07-11 18:58:41 +0200
commitfc42ffa15af3bc70a93b9def27282a046c00f809 (patch)
tree0f61f72bb3e0e00a6e53237f7d99f585f639a0cf /qmake/project.cpp
parenta84c87f1adea0981d6dce9cd82761ef21b2fa4d2 (diff)
invert the output order of $$resolve_depends()
it needs to go from highest order to lowest order. that's not relevant unless doing static linking. Change-Id: Ieb69e3949b4d9cc2d2a62f5661f31e3dc88ac882 Reviewed-on: http://codereview.qt.nokia.com/1454 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Marius Storm-Olsen <marius.storm-olsen@nokia.com>
Diffstat (limited to 'qmake/project.cpp')
-rw-r--r--qmake/project.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/project.cpp b/qmake/project.cpp
index f6a45204f8..feff736480 100644
--- a/qmake/project.cpp
+++ b/qmake/project.cpp
@@ -1815,7 +1815,7 @@ void calculateDeps(QStringList &sortedList, const QString &item, const QString &
}
if (org.contains(item)) {
- sortedList += item;
+ sortedList.prepend(item);
org.removeAll(item);
}
}