Revision 03c6a4f5
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
scripts/locales.pl | ||
---|---|---|
238 | 238 |
sub parse_args { |
239 | 239 |
my ($help, $man); |
240 | 240 |
|
241 |
my ($opt_no_c, $ignore_for_compatiblity); |
|
242 |
|
|
241 | 243 |
GetOptions( |
242 | 244 |
'no-custom-files' => \$opt_n, |
243 |
'check-files' => \$opt_c, |
|
245 |
'check-files' => \$ignore_for_compatiblity, |
|
246 |
'no-check-files' => \$opt_no_c, |
|
244 | 247 |
'verbose' => \$opt_v, |
245 | 248 |
'help' => \$help, |
246 | 249 |
'man' => \$man, |
247 | 250 |
'debug' => \$debug, |
248 | 251 |
); |
249 | 252 |
|
253 |
$opt_c = !$opt_no_c; |
|
254 |
|
|
250 | 255 |
if ($help) { |
251 | 256 |
pod2usage(1); |
252 | 257 |
exit 0; |
Auch abrufbar als: Unified diff
locales.pl: Checks per Default durchführen
Zum Nicht-Durchführen gibt's dafür --no-check-files.