remove eval so the Perl loader dies on invalid content.
[p5sagit/Config-Any.git] / Makefile.PL
1 use inc::Module::Install 0.68;
2
3 if ( -e 'MANIFEST.SKIP' ) {
4     system( 'pod2text lib/Config/Any.pm > README' );
5 }
6
7 name 'Config-Any';
8 all_from 'lib/Config/Any.pm';
9
10 requires 'Module::Pluggable' => '3.01';
11
12 test_requires 'Test::More';
13
14 auto_install;
15 WriteAll;