X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/24ea4061be2db0fba94ec117db2b737b758fb891..a3ae31c:/scripts/locales.pl diff --git a/scripts/locales.pl b/scripts/locales.pl index 9e6a4ae58..53c3af5be 100755 --- a/scripts/locales.pl +++ b/scripts/locales.pl @@ -238,15 +238,20 @@ EOL sub parse_args { my ($help, $man); + my ($opt_no_c, $ignore_for_compatiblity); + GetOptions( 'no-custom-files' => \$opt_n, - 'check-files' => \$opt_c, + 'check-files' => \$ignore_for_compatiblity, + 'no-check-files' => \$opt_no_c, 'verbose' => \$opt_v, 'help' => \$help, 'man' => \$man, 'debug' => \$debug, ); + $opt_c = !$opt_no_c; + if ($help) { pod2usage(1); exit 0;