equal
deleted
inserted
replaced
310 my $cppcmd; |
310 my $cppcmd; |
311 if($opts{'build'}=~/^u/i) { |
311 if($opts{'build'}=~/^u/i) { |
312 # Unicode build |
312 # Unicode build |
313 $cppcmd = "$Epoc32Path/gcc/bin/cpp $cppflags -D UNICODE $defines rom1.tmp rom2.tmp"; |
313 $cppcmd = "$Epoc32Path/gcc/bin/cpp $cppflags -D UNICODE $defines rom1.tmp rom2.tmp"; |
314 } else { |
314 } else { |
315 $cppcmd = "cpp $cppflags $defines rom1.tmp rom2.tmp"; |
315 $cppcmd = "$Epoc32Path/gcc/bin/cpp $cppflags $defines rom1.tmp rom2.tmp"; |
316 } |
316 } |
317 print "Executing CPP:\n\t$cppcmd\n" if $debug; |
317 print "Executing CPP:\n\t$cppcmd\n" if $debug; |
318 $ret = system($cppcmd); |
318 $ret = system($cppcmd); |
319 die "ERROR EXECUTING CPP\n" if $ret; |
319 die "ERROR EXECUTING CPP\n" if $ret; |
320 |
320 |