summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-04-27 12:05:38 +0200
committerNicholas Clark <nick@ccl4.org>2012-06-05 20:59:36 +0200
commit5924d25db672e4188c36b980f26c737b98533b4f (patch)
tree274d294a24a7001ce77208fbd51d2ce7e10a661a /make_ext.pl
parent14636674d1354874af66d4ede62b8e5fe6bb836b (diff)
downloadperl-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.pl7
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';