From: Sebastian Riedel Date: Sat, 23 Apr 2005 00:20:53 +0000 (+0000) Subject: Fixed typo X-Git-Tag: 5.7099_04~1449 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=8f8532e19f5998617f0a05eab528012291168e61 Fixed typo --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 69dc28a..80394cb 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -251,7 +251,7 @@ sub import { my $subdir = dir($home)->subdir($append); for ( split '/', $name ) { $home = dir($home)->parent } if ( $home =~ /blib$/ ) { $home = dir($home)->parent } - elsif ( !-f file( $home, 'Build.PL' ) ) { $home = $subdir } + elsif ( !-f file( $home, 'Makefile.PL' ) ) { $home = $subdir } if ( $caller->debug ) { $home @@ -352,7 +352,7 @@ Sebastian Riedel, C Andy Grundman, Andrew Ford, Andrew Ruthven, Autrijus Tang, Christian Hansen, Christopher Hicks, Dan Sully, Danijel Milicevic, David Naughton, -Gary Ashton Jones, Jesse Sheidlower, Johan Lindstrom, Leon Brocard, +Gary Ashton Jones, Jesse Sheidlower, Jody Belka, Johan Lindstrom, Leon Brocard, Marcus Ramberg, Tatsuhiko Miyagawa and all the others who've helped. =head1 LICENSE diff --git a/lib/Catalyst/Manual/Cookbook.pod b/lib/Catalyst/Manual/Cookbook.pod index 3295168..d076b8d 100644 --- a/lib/Catalyst/Manual/Cookbook.pod +++ b/lib/Catalyst/Manual/Cookbook.pod @@ -21,7 +21,7 @@ placing a C call in the C action. If you're tired of removing and adding this all the time, you can easily add a condition. For example: - die "Testing" if $c->param->{dump_info}; + die "Testing" if $c->params->{dump_info}; =head2 Disable statistics