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>
This commit is contained in:
Oswald Buddenhagen 2011-07-11 17:13:19 +02:00 committed by Qt by Nokia
parent a84c87f1ad
commit fc42ffa15a

View File

@ -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);
}
}