From: Nicholas Clark Date: Sat, 2 Mar 2013 11:19:07 +0000 (+0100) Subject: Add the upstream Makefile.PL for Cwd X-Git-Tag: v5.19.3~36^2~2 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/8e6d3e2b Add the upstream Makefile.PL for Cwd This needs to return to the perl repository because the upcoming change to Cwd needs to patch to include extra logic not in the auto-generated Makefile.PL --- diff --git a/MANIFEST b/MANIFEST index c3f1ec4..9ab144e 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2927,6 +2927,7 @@ dist/Cwd/lib/File/Spec.pm portable operations on file names dist/Cwd/lib/File/Spec/Unix.pm portable operations on Unix file names dist/Cwd/lib/File/Spec/VMS.pm portable operations on VMS file names dist/Cwd/lib/File/Spec/Win32.pm portable operations on Win32 and NetWare file names +dist/Cwd/Makefile.PL makefile writer for Cwd dist/Cwd/t/crossplatform.t See if File::Spec works crossplatform dist/Cwd/t/cwd.t See if Cwd works dist/Cwd/t/Functions.t See if File::Spec::Functions works diff --git a/dist/Cwd/Makefile.PL b/dist/Cwd/Makefile.PL new file mode 100644 index 0000000..db5fbc7 --- /dev/null +++ b/dist/Cwd/Makefile.PL @@ -0,0 +1,27 @@ + +BEGIN { @INC = grep {!/blib/} @INC } + +# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01 +require 5.005; +use ExtUtils::MakeMaker; +WriteMakefile +( + 'DISTNAME' => 'PathTools', + 'NAME' => 'Cwd', + 'VERSION_FROM' => 'Cwd.pm', + ( + (grep { $_ eq 'PERL_CORE=1' } @ARGV) + ? ('DEFINE' => '-DNO_PPPORT_H') + : () + ), + 'PREREQ_PM' => { + 'Carp' => '0', + 'File::Basename' => '0', + 'Scalar::Util' => '0', + 'Test' => '0' + }, + 'INSTALLDIRS' => 'perl', + 'EXE_FILES' => [], + 'PL_FILES' => {} + ) +;