This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Tweak IPC-Open3.t to cope with \r\n line endings on Win32.
[perl5.git] / dist / Safe / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my $core = grep { $_ eq 'PERL_CORE=1' } @ARGV;
4
5 WriteMakefile(
6     NAME => 'Safe',
7     VERSION_FROM => 'Safe.pm',
8     INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'),
9     ($core || $] >= 5.011) ? () : (INST_LIB => '$(INST_ARCHLIB)'),
10 );