The option line may start with a space, which gives an empty option.
Make sure those are purged...
This commit is contained in:
parent
97f56446a3
commit
7f2113a2d5
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ EOF
|
|||
}
|
||||
$platform=$_;
|
||||
}
|
||||
foreach (split / /, $OPTIONS)
|
||||
foreach (grep(!/^$/, split(/ /, $OPTIONS)))
|
||||
{
|
||||
print STDERR "unknown option - $_\n" if !&read_options;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue