summaryrefslogtreecommitdiffstats
path: root/bin/syncqt
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-12-04 21:58:41 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-05 17:29:46 +0100
commit4b819803f63ea58ac4cc4e8bc61f12321f91197a (patch)
tree8b938ae026288a55b802b0d6ea76adcea584bc58 /bin/syncqt
parent943c04d879c68163e2e25eb1777ccce7cc94ca77 (diff)
don't check modules which were not requested
Change-Id: I4928b37239af21dfc6edc84f1e989a2717614629 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'bin/syncqt')
-rwxr-xr-xbin/syncqt2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/syncqt b/bin/syncqt
index ab8a48f7a9..01a24ad9df 100755
--- a/bin/syncqt
+++ b/bin/syncqt
@@ -1146,7 +1146,7 @@ unless($showonly || !$create_uic_class_map) {
}
if($check_includes) {
- for my $lib (keys(%modules)) {
+ foreach my $lib (@modules_to_sync) {
#calc subdirs
my @subdirs = listSubdirs(map { s/^\^//; $_ } split(/;/, $modules{$lib}));