# HG changeset patch # User Arnaud Lenoir # Date 1268925961 0 # Node ID 5e2688cee10585b3f37fa291df78297ee2b67f49 # Parent 9bd66cf1e0e09475e25a72d19b6b16ec2722aca3 Modify the line 315 of rom_sbs.pl to access cpp.exe when not building for Unicode. diff -r 9bd66cf1e0e0 -r 5e2688cee105 kernel/eka/rombuild/rom_sbs.pl --- a/kernel/eka/rombuild/rom_sbs.pl Thu Mar 18 15:20:39 2010 +0000 +++ b/kernel/eka/rombuild/rom_sbs.pl Thu Mar 18 15:26:01 2010 +0000 @@ -312,7 +312,7 @@ # Unicode build $cppcmd = "$Epoc32Path/gcc/bin/cpp $cppflags -D UNICODE $defines rom1.tmp rom2.tmp"; } else { - $cppcmd = "cpp $cppflags $defines rom1.tmp rom2.tmp"; + $cppcmd = "$Epoc32Path/gcc/bin/cpp $cppflags $defines rom1.tmp rom2.tmp"; } print "Executing CPP:\n\t$cppcmd\n" if $debug; $ret = system($cppcmd);