summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-12 10:44:12 +0200
committerJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-12 11:09:55 +0200
commit29dcc069ba9a2c38b4461d5fd19d5fa9a1531595 (patch)
tree029aeaee01b52633a45dc8d2839722b85cd433c2 /bin
parent943d63e45ad09f75daa7d2f3dcc17bb28fda1766 (diff)
downloadqt4-tools-29dcc069ba9a2c38b4461d5fd19d5fa9a1531595.tar.gz
syncqt: fix wrong paths in include/ActiveQt/headers.pri
Assigning a semicolon separated list of directories to a Qt module does not work correctly. The values of %modules must be split into single values before operating on them. This doesn't happen in all places. ActiveQt is the only module where this feature is used. Also, it is not needed anymore for this particular module. Thus, I'll just remove the semicolon separated list from ActiveQt and replace it with the module directory. Task-number: QTBUG-4586 Reviewed-by: ossi
Diffstat (limited to 'bin')
-rwxr-xr-xbin/syncqt2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/syncqt b/bin/syncqt
index db6dce6284..4f8e343bbc 100755
--- a/bin/syncqt
+++ b/bin/syncqt
@@ -42,7 +42,7 @@ my %modules = ( # path to module name map
"QtScript" => "$basedir/src/script",
"QtScriptTools" => "$basedir/src/scripttools",
"Qt3Support" => "$basedir/src/qt3support",
- "ActiveQt" => "$basedir/src/activeqt/container;$basedir/src/activeqt/control;$basedir/src/activeqt/shared",
+ "ActiveQt" => "$basedir/src/activeqt",
"QtTest" => "$basedir/src/testlib",
"QtAssistant" => "$basedir/tools/assistant/compat/lib",
"QtHelp" => "$basedir/tools/assistant/lib",