diff options
| author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-09-15 00:02:02 (GMT) |
|---|---|---|
| committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-09-15 00:02:02 (GMT) |
| commit | 4ef087e5ecd19286b6f43b07f4e47da4f1ae036f (patch) | |
| tree | ca8af4d2016a7e242fa68629835fbb963100539e | |
| parent | 2a1c4cbca0db45fa911b6d4e9a5ae553f8289353 (diff) | |
| parent | cd5441ec7937703904700dddf25afdcc80a66661 (diff) | |
| download | Qt-4ef087e5ecd19286b6f43b07f4e47da4f1ae036f.zip Qt-4ef087e5ecd19286b6f43b07f4e47da4f1ae036f.tar.gz Qt-4ef087e5ecd19286b6f43b07f4e47da4f1ae036f.tar.bz2 | |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public:
Fix compile error with active perl 5.8.9
This patch enables calling createpackage script also
| -rwxr-xr-x | bin/createpackage.pl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/createpackage.pl b/bin/createpackage.pl index 2569a66..361b32d 100755 --- a/bin/createpackage.pl +++ b/bin/createpackage.pl @@ -308,7 +308,7 @@ if($stub) { mkpath($systeminstall); my $stub_sis_name = $systeminstall."/".$stub_sis_name; # Create stub SIS. - system ("makesis -s $pkgoutput $stub_sis_name"); + system ("$ENV{EPOCROOT}epoc32/tools/makesis -s $pkgoutput $stub_sis_name"); } else { if ($certtext eq "Self Signed" && !@certificates @@ -321,7 +321,11 @@ if($stub) { # Create SIS. # The 'and' is because system uses 0 to indicate success. - system ("makesis $pkgoutput $unsigned_sis_name") and die ("makesis failed"); + if($ENV{EPOCROOT}) { + system ("$ENV{EPOCROOT}epoc32/tools/makesis $pkgoutput $unsigned_sis_name") and die ("makesis failed"); + } else { + system ("makesis $pkgoutput $unsigned_sis_name") and die ("makesis failed"); + } print("\n"); my $targetInsert = ""; |
