Make genlang output errors on STDERR. FS#9668 by Tomer Shalev.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20130 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1ab0a50bc1
commit
6d638922e1
1 changed files with 5 additions and 5 deletions
|
@ -89,29 +89,29 @@ my $voiceout = $o;
|
|||
my $check = ($binary?1:0) + ($prefix?1:0) + ($update?1:0) + ($voiceout?1:0) + ($sortfile?1:0);
|
||||
|
||||
if($check > 1) {
|
||||
print "Please use only one of -p, -u, -o, -b and -s\n";
|
||||
print STDERR "Please use only one of -p, -u, -o, -b and -s\n";
|
||||
exit;
|
||||
}
|
||||
if(!$check) {
|
||||
print "Please use at least one of -p, -u, -o, -b and -s\n";
|
||||
print STDERR "Please use at least one of -p, -u, -o, -b and -s\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
if(($binary || $update || $voiceout || $sortfile) && !$english) {
|
||||
print "Please use -e too when you use -b, -o, -u or -s\n";
|
||||
print STDERR "Please use -e too when you use -b, -o, -u or -s\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
my $target_id = $i;
|
||||
if($binary && !$target_id) {
|
||||
print "Please specify a target id number (with -i)!\n";
|
||||
print STDERR "Please specify a target id number (with -i)!\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
my $target = $t;
|
||||
if(!$target && !$update && !$sortfile) {
|
||||
print "Please specify a target (with -t)!\n";
|
||||
print STDERR "Please specify a target (with -t)!\n";
|
||||
exit;
|
||||
}
|
||||
my $verbose=$v;
|
||||
|
|
Loading…
Reference in a new issue