equal
deleted
inserted
replaced
125 # 3) Run makesis.exe itself. |
125 # 3) Run makesis.exe itself. |
126 # |
126 # |
127 my $unsignedSisFileName = $sisFileName; |
127 my $unsignedSisFileName = $sisFileName; |
128 $unsignedSisFileName =~ s/\.sis/\.unsigned\.sis/i; |
128 $unsignedSisFileName =~ s/\.sis/\.unsigned\.sis/i; |
129 fshu::MakePath(dirname($unsignedSisFileName)); |
129 fshu::MakePath(dirname($unsignedSisFileName)); |
130 $command = "makesis -d$ENV{EPOCROOT} $tempFileName $unsignedSisFileName 2>&1"; |
130 $command = "$ENV{EPOCROOT}epoc32\\tools\\makesis -d$ENV{EPOCROOT} $tempFileName $unsignedSisFileName 2>&1"; |
131 print "Running \"$command\"\n" if ($options{verbose}); |
131 print "Running \"$command\"\n" if ($options{verbose}); |
132 my $exitcode = system($command) >> 8; |
132 my $exitcode = system($command) >> 8; |
133 print "\n"; # Makesis doesn't do this |
133 print "\n"; # Makesis doesn't do this |
134 print "Exit code from makesis: $exitcode\n" if ($options{verbose}); |
134 print "Exit code from makesis: $exitcode\n" if ($options{verbose}); |
135 |
135 |