diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2004-12-16 04:57:44 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-12-16 16:05:49 +0000 |
commit | 170888cff5e2ffb7b4b221453ce3ca926e8506b5 (patch) | |
tree | c3c0b727151514af714df939a3ba08c6979ce042 /ext/POSIX/Makefile.PL | |
parent | ac094485567eddd24656a16373911b7998762c94 (diff) | |
download | perl-170888cff5e2ffb7b4b221453ce3ca926e8506b5.tar.gz |
Re: Can't locate auto/POSIX/autosplit.ix [perl #24445] [PATCH]
Message-ID: <Pine.SOL.4.58.0412160953470.20202@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@23659
Diffstat (limited to 'ext/POSIX/Makefile.PL')
-rw-r--r-- | ext/POSIX/Makefile.PL | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index ae00b04735..9cd24b040e 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -1,3 +1,7 @@ +# Explicitly avoid including '.' in @INC; autoloader gets confused since it +# can find POSIX.pm, but can't find autosplit.ix. +BEGIN { @INC = '../../lib';} +# use ExtUtils::MakeMaker; use ExtUtils::Constant 0.11 'WriteConstants'; use Config; |