(parse_args): Configure GetOpt with "permute", too, to work

around POSIXLY_CORRECT problems.
This commit is contained in:
Paul Eggert 2002-10-08 23:04:33 +00:00
parent 1682b2f72f
commit 826b10b108

View File

@ -472,7 +472,7 @@ sub parse_args ()
do {
@language = ();
use Getopt::Long;
Getopt::Long::Configure ("pass_through");
Getopt::Long::Configure ("pass_through", "permute");
GetOptions ("l|language=s" => \@language);
foreach (@language)