File: compile-all-zones

package info (click to toggle)
libdatetime-timezone-perl 1%3A0.77.01-1%2B2008c
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,208 kB
  • ctags: 2,636
  • sloc: perl: 3,691; sh: 56
file content (24 lines) | stat: -rwxr-xr-x 467 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/perl -w

use strict;

unless ( -d '/usr/share/zoneinfo' )
{
    print <<'EOF';

This script is hard-coded to use /usr/share/zoneinfo but you do not
have such a directory.  Are you sure you want to use it?
EOF
    exit;
}

my @files = qw( africa antarctica asia australasia
                europe northamerica pacificnew
                southamerica backward
              );

for my $f (@files)
{
    system( './zic', $f, '-d', '/usr/share/zoneinfo' );
}