diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-04-27 12:05:38 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-06-05 20:59:36 +0200 |
commit | 5924d25db672e4188c36b980f26c737b98533b4f (patch) | |
tree | 274d294a24a7001ce77208fbd51d2ce7e10a661a /make_ext.pl | |
parent | 14636674d1354874af66d4ede62b8e5fe6bb836b (diff) | |
download | perl-5924d25db672e4188c36b980f26c737b98533b4f.tar.gz |
make_ext.pl need not manipulate @INC, as buildcustomize.pl already does it.
Remove from make_ext.pl code that predates the introduction of
buildcustomize.pl, as that now sets up @INC correctly before make_ext.pl even
runs. During the build process make_ext.pl is only run by miniperl.
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/make_ext.pl b/make_ext.pl index f678cd6c30..cf1e826a86 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -2,13 +2,6 @@ use strict; use warnings; use Config; -BEGIN { - if ($^O eq 'MSWin32') { - unshift @INC, '../dist/Cwd'; - } else { - unshift @INC, 'dist/Cwd'; - } -} my $is_Win32 = $^O eq 'MSWin32'; my $is_VMS = $^O eq 'VMS'; |