diff options
author | Zeno Albisser <zeno.albisser@nokia.com> | 2010-04-07 09:47:15 (GMT) |
---|---|---|
committer | Zeno Albisser <zeno.albisser@nokia.com> | 2010-04-07 13:16:57 (GMT) |
commit | 353138baaae4b437e3f30b30d76667c8428b1be2 (patch) | |
tree | 537f34d159115166d10a964f9297beaf1db9bef7 /bin | |
parent | b2d11d1996868a4425e15bf9a14261133e999868 (diff) | |
download | Qt-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')
-rwxr-xr-x | bin/syncqt | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 $/; |