$continuator = '';
}
}
- $str .= "\n\t\$(PERL) compile -o \$\@ -F $table.fnm\n\n";
+ $str .= "\n\t\$(PERL) compile -o \$\@ -f $table.fnm\n\n";
open (FILELIST, ">$table.fnm")
|| die "Could not open $table.fnm: $!";
foreach my $file (@{$tables{$table}})
eval "\@ARGV = map(glob(\$_),\@ARGV)" if ($^O eq 'MSWin32');
my %opt;
-getopts('qo:F:n:',\%opt);
+getopts('qo:f:n:',\%opt);
my $cname = (exists $opt{'o'}) ? $opt{'o'} : shift(@ARGV);
chmod(0666,$cname) if -f $cname && !-w $cname;
open(C,">$cname") || die "Cannot open $cname:$!";
}
my @encfiles;
-if (exists $opt{'F'})
+if (exists $opt{'f'})
{
# -F is followed by name of file containing list of filenames
- my $flist = $opt{'F'};
+ my $flist = $opt{'f'};
open(FLIST,$flist) || die "Cannot open $flist:$!";
chomp(@encfiles = <FLIST>);
close(FLIST);