summaryrefslogtreecommitdiffstats
path: root/bin/syncqt
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@nokia.com>2010-04-07 09:47:15 (GMT)
committerZeno Albisser <zeno.albisser@nokia.com>2010-04-07 13:16:57 (GMT)
commit353138baaae4b437e3f30b30d76667c8428b1be2 (patch)
tree537f34d159115166d10a964f9297beaf1db9bef7 /bin/syncqt
parentb2d11d1996868a4425e15bf9a14261133e999868 (diff)
downloadQt-353138baaae4b437e3f30b30d76667c8428b1be2.zip
Qt-353138baaae4b437e3f30b30d76667c8428b1be2.tar.gz
Qt-353138baaae4b437e3f30b30d76667c8428b1be2.tar.bz2
A minor fix to allow multiple directories in modules name map of syncqt
Reviewed-by: Marius Storm-Olsen Task-number: QTBUG-4586
Diffstat (limited to 'bin/syncqt')
-rwxr-xr-xbin/syncqt3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/syncqt b/bin/syncqt
index be4af2a..71f2eab 100755
--- a/bin/syncqt
+++ b/bin/syncqt
@@ -898,7 +898,8 @@ foreach (@modules_to_sync) {
push @master_includes, "$out_basedir/include/phonon_compat/Phonon/Phonon" if ($lib eq "phonon");
foreach my $master_include (@master_includes) {
#generate the "master" include file
- $pri_install_files .= fixPaths($master_include, "$modules{$lib}") . " "; #get the master file installed too
+ my @tmp = split(/;/,$modules{$lib});
+ $pri_install_files .= fixPaths($master_include, "$tmp[0]") . " "; #get the master file installed too
if($master_include && -e "$master_include") {
open MASTERINCLUDE, "<$master_include";
local $/;