diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-01-14 07:32:58 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-01-14 07:32:58 +0000 |
commit | e9db494c38db2c5d20c4a6c6b28eea4265187054 (patch) | |
tree | e2b401c00b2496b5686825c009c73ff3a62f485c /tools/install-perl-modules | |
parent | b4026e50a1a1c09a73a7e1c54f788d6a4aec327b (diff) |
Do without Log::Dispatch
Diffstat (limited to 'tools/install-perl-modules')
-rwxr-xr-x | tools/install-perl-modules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install-perl-modules b/tools/install-perl-modules index 2565bad..3848e8e 100755 --- a/tools/install-perl-modules +++ b/tools/install-perl-modules @@ -6,7 +6,7 @@ use strict; use CPAN; -for my $mod (qw{Data::Dumper Digest::MD5 HTML::Template GnuPG::Interface Log::Dispatch}) { +for my $mod (qw{Data::Dumper Digest::MD5 HTML::Template GnuPG::Interface}) { my $obj = CPAN::Shell->expand('Module',$mod); $obj->install(); }; |