diff options
author | Mystery Man <unknown@mandriva.org> | 2003-11-21 12:53:39 +0000 |
---|---|---|
committer | Mystery Man <unknown@mandriva.org> | 2003-11-21 12:53:39 +0000 |
commit | 7396369ef190a049b3a779a54edd76ff118f3c28 (patch) | |
tree | 20c2a6d7fcd96433d0d91b1460b5604a6d7267ce /perl-install/timezone.pm | |
parent | e41742b093fdb26bcae87e9d5b30d4d7bca93ea9 (diff) | |
download | drakx-7396369ef190a049b3a779a54edd76ff118f3c28.tar drakx-7396369ef190a049b3a779a54edd76ff118f3c28.tar.gz drakx-7396369ef190a049b3a779a54edd76ff118f3c28.tar.bz2 drakx-7396369ef190a049b3a779a54edd76ff118f3c28.tar.xz drakx-7396369ef190a049b3a779a54edd76ff118f3c28.zip |
This commit was manufactured by cvs2svn to create tag 'MDK92-AMD64'.MDK92-AMD64
Diffstat (limited to 'perl-install/timezone.pm')
-rw-r--r-- | perl-install/timezone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm index f09bbdf1b..d6dc774ce 100644 --- a/perl-install/timezone.pm +++ b/perl-install/timezone.pm @@ -11,7 +11,7 @@ sub getTimeZones { my ($prefix) = @_; $::testing and $prefix = ''; open(my $F, "cd $prefix/usr/share/zoneinfo && find [A-Z]* -type f |"); - my @l = chomp_(<$F>); + my @l = difference2([ chomp_(<$F>) ], [ 'ROC', 'PRC'] ); close $F or die "cannot list the available zoneinfos"; sort @l; } |