# HG changeset patch # User Dario Sestito # Date 1286898379 -3600 # Node ID 3587eff339f44752f1ea5f1ba863b70613369327 # Parent e7617140374474919b05d92358845c3eada40b30 Fix: rom_sbs.pl should exit with return code different than 0 if rombuild is not found in the path diff -r e76171403744 -r 3587eff339f4 kernel/eka/rombuild/rom_sbs.pl --- a/kernel/eka/rombuild/rom_sbs.pl Tue Oct 05 14:38:32 2010 +0100 +++ b/kernel/eka/rombuild/rom_sbs.pl Tue Oct 12 16:46:19 2010 +0100 @@ -470,6 +470,11 @@ my $nwarnings=0; while() { + if (/is not recognized as an internal or external command/) + { + print; + exit(1); + } my $error=(/^error:/i); my $warning=(/^warning:/i); print if ($error or $warning or !$quiet);