Add 5.11.3 to perlhist.
[p5sagit/p5-mst-13.2.git] / dist / Safe / Makefile.PL
CommitLineData
7d1d1f86 1use ExtUtils::MakeMaker;
2
7fd9b275 3my $core = grep { $_ eq 'PERL_CORE=1' } @ARGV;
4
7d1d1f86 5WriteMakefile(
6 NAME => 'Safe',
7 VERSION_FROM => 'Safe.pm',
8 INSTALLDIRS => 'perl',
7fd9b275 9 ($core || $] >= 5.011) ? () : (INST_LIB => '$(INST_ARCHLIB)'),
7d1d1f86 10);