diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-05-20 09:43:37 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-05-20 09:43:37 (GMT) |
commit | 30ffe43f826baae366b6e745d077ade316512d3b (patch) | |
tree | 3e8c020ec99a5d69b9787a8d164a2f326936eebc /bin | |
parent | e7989aeb09f7c597edf3498183bd97bd0122382b (diff) | |
parent | 99f6250a4ac031b70757442715b226bc339ab699 (diff) | |
download | Qt-30ffe43f826baae366b6e745d077ade316512d3b.zip Qt-30ffe43f826baae366b6e745d077ade316512d3b.tar.gz Qt-30ffe43f826baae366b6e745d077ade316512d3b.tar.bz2 |
Merge remote branch 'origin/4.7' into qt-master-from-4.7
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/createpackage.pl | 4 | ||||
-rwxr-xr-x | bin/syncqt | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/bin/createpackage.pl b/bin/createpackage.pl index 7453ba5..939c38e 100755 --- a/bin/createpackage.pl +++ b/bin/createpackage.pl @@ -181,7 +181,7 @@ if ($signed_sis_name eq "") { } my $unsigned_sis_name = $sisoutputbasename."_unsigned.sis"; -my $stub_sis_name = $sisoutputbasename."_stub.sis"; +my $stub_sis_name = $sisoutputbasename.".sis"; # Store some utility variables my $scriptpath = dirname(__FILE__); @@ -292,7 +292,7 @@ if($stub) { # Create stub SIS. system ("makesis -s $pkgoutput $stub_sis_name"); } else { - if ($certtext eq "Self Signed" && !@certificates) { + if ($certtext eq "Self Signed" && !@certificates && $templatepkg !~ m/_installer\.pkg$/i) { print("Auto-patching capabilities for self signed package.\n"); system ("patch_capabilities $pkgoutput"); } @@ -50,8 +50,7 @@ my %modules = ( # path to module name map "QtDBus" => "$basedir/src/dbus", "QtWebKit" => "$basedir/src/3rdparty/webkit/WebCore", "phonon" => "$basedir/src/phonon", - "QtMultimedia" => "$basedir/src/multimedia/multimedia", - "QtMediaServices" => "$basedir/src/multimedia/mediaservices", + "QtMultimedia" => "$basedir/src/multimedia", ); my %moduleheaders = ( # restrict the module headers to those found in relative path "QtWebKit" => "../WebKit/qt/Api", |