From 93c51ef2c6348d70e1be284f0f5f750bde719a4f Mon Sep 17 00:00:00 2001 From: Justin Hunter Date: Sun, 19 Jun 2016 15:22:32 -0400 Subject: [PATCH] fix typo of "Module::Install" in Makefile.PL --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 77bb41fc8..ae6ba95cc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -87,7 +87,7 @@ if ($Module::Install::AUTHOR && ! $args->{skip_author_deps}) { my @missing_plugins; for my $plugin (qw(ReadmeFromPod AuthorTests)) { eval "require Module::Install::$plugin" and next; - push @missing_plugins, "Module::Instal::$plugin"; + push @missing_plugins, "Module::Install::$plugin"; chomp(my $err = $@); $missing_plugins[-1] .= " ($err)" unless $err =~ m{^Can't locate Module/Install/$plugin.pm in \@INC};