summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-07-31 20:40:25 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-01 15:37:46 +0200
commita70eb262c101ec7e278b883c98a5e7a5328dfdf4 (patch)
tree3305ccce6a8307dde373c31944bc99c6f82cde08
parent19d1eb06b33237426e643b21ab1122b2aaff3a8c (diff)
Skip doc subfolders when checking includes.
This removes the bogus warnings when running syncqt from configure about snippets in the doc/ folders. Change-Id: I8e3d258238c1cd1e763ce63b895d58b68bbc06f3 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-rwxr-xr-xbin/syncqt3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/syncqt b/bin/syncqt
index 7589e696a4..fbeee2704a 100755
--- a/bin/syncqt
+++ b/bin/syncqt
@@ -1150,7 +1150,8 @@ if($check_includes) {
push @subdirs, "$subdir/$t" if(-d "$subdir/$t" && !($t eq ".") &&
!($t eq "..") && !($t eq ".obj") &&
!($t eq ".moc") && !($t eq ".rcc") &&
- !($t eq ".uic") && !($t eq "build"));
+ !($t eq ".uic") && !($t eq "build") &&
+ !($t eq "doc"));
}
closedir DIR;
}