summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-01-14 07:32:58 +0000
committerPeter Palfrader <peter@palfrader.org>2003-01-14 07:32:58 +0000
commite9db494c38db2c5d20c4a6c6b28eea4265187054 (patch)
treee2b401c00b2496b5686825c009c73ff3a62f485c /tools
parentb4026e50a1a1c09a73a7e1c54f788d6a4aec327b (diff)
Do without Log::Dispatch
Diffstat (limited to 'tools')
-rwxr-xr-xtools/install-perl-modules2
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();
};