# HG changeset patch # User William Roberts # Date 1280138801 -3600 # Node ID e4a1175ecbc05a3ee98d9d089e840c30b9f634a5 # Parent da1922ac85fbd8b930a0ca6489a4d56d48336eab Final fix to rom_sbs.pl for Bug 3358 Sadly the rom.pl code did not work when the script was run from the root directory (Bug 3381) diff -r da1922ac85fb -r e4a1175ecbc0 kernel/eka/rombuild/rom_sbs.pl --- a/kernel/eka/rombuild/rom_sbs.pl Fri Jul 23 10:28:58 2010 +0100 +++ b/kernel/eka/rombuild/rom_sbs.pl Mon Jul 26 11:06:41 2010 +0100 @@ -128,8 +128,8 @@ $Epoc32Path .= $EpocRoot . "epoc32"; $toolpath = "$Epoc32Path\\tools\\"; push @INC, $toolpath; - $BasePath = $toroot; - $BasePath =~ s/\\$/$e32path\\/; + $BasePath = "$toroot$e32path\\"; # Note: toroot may be empty! + $BasePath =~ s/\\\\/\\/g; # clean up path seaprators } use E32Plat;