This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
describe how to create a remote topic branch
[perl5.git] / make_ext.pl
index 95d81f2..de26d84 100644 (file)
@@ -28,17 +28,16 @@ my $is_Unix = !$is_Win32 && !$is_VMS;
 # This list cannot get any longer without overflowing the length limit for
 # environment variables on VMS
 my @toolchain = qw(cpan/AutoLoader/lib
-                  ext/constant/lib
                   cpan/Cwd cpan/Cwd/lib
-                  ext/ExtUtils-Command/lib
+                  cpan/ExtUtils-Command/lib
                   dist/ExtUtils-Install/lib
-                  ext/ExtUtils-MakeMaker/lib
-                  ext/ExtUtils-Manifest/lib
+                  cpan/ExtUtils-MakeMaker/lib
+                  cpan/ExtUtils-Manifest/lib
                   cpan/File-Path/lib
                   );
 
 # Used only in ExtUtils::Liblist::Kid::_win32_ext()
-push @toolchain, 'ext/Text-ParseWords/lib' if $is_Win32;
+push @toolchain, 'cpan/Text-ParseWords/lib' if $is_Win32;
 
 my @ext_dirs = qw(cpan dist ext);
 my $ext_dirs_re = '(?:' . join('|', @ext_dirs) . ')';
@@ -305,6 +304,7 @@ sub build_extension {
     }
     $ENV{PERL5LIB} = join $Config{path_sep}, @new_inc;
     $ENV{PERL_CORE} = 1;
+    # warn $ENV{PERL5LIB};
 
     my $makefile;
     if ($is_VMS) {