blob: abde68152f0b799cef22353be578682a366f28ef (
plain)
1
2
3
4
5
6
7
8
9
10
|
use ExtUtils::MakeMaker;
my $core = grep { $_ eq 'PERL_CORE=1' } @ARGV;
WriteMakefile(
NAME => 'Safe',
VERSION_FROM => 'Safe.pm',
INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'),
($core || $] >= 5.011) ? () : (INST_LIB => '$(INST_ARCHLIB)'),
);
|