X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0d02e17637096605e5d87342eb2d5aab24e009c7;hb=a0bb847e6fa82f029a4f77a1cbd29f51002c3e23;hp=4ff562521320ea0a8919bed2df891cebdcf69242;hpb=fc7ec1d96ee55d1bf42af3abce155ecb717b9e2b;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index 4ff5625..0d02e17 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Catalyst', VERSION_FROM => 'lib/Catalyst.pm', - EXE_FILES => ['bin/catalyst'], + EXE_FILES => ['script/catalyst.pl'], PREREQ_PM => { UNIVERSAL::require => 0, CGI::Simple => 0, @@ -11,12 +11,12 @@ WriteMakefile( Class::Data::Inheritable => 0, HTML::Entities => 0, HTTP::Headers => 0, + HTTP::Server::Simple => 0, Module::Pluggable::Fast => 0 } ); -my $gabb = - int( rand(2) ) == 1 - ? "Gabbana is the greatest!" - : "Gabbana is drunk again!"; -print "$gabb\n"; +print( + (qw/draven naughton sri the_jester/)[ int( rand(4) ) ], + " is the greatest and gabb is drunk again!\n" +);