Change 23659 by [EMAIL PROTECTED] on 2004/12/16 16:05:49
Subject: Re: Can't locate auto/POSIX/autosplit.ix [perl #24445] [PATCH]
From: Andy Dougherty <[EMAIL PROTECTED]>
Date: Thu, 16 Dec 2004 09:57:44 -0500 (EST)
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/ext/POSIX/Makefile.PL#19 edit
Differences ...
==== //depot/perl/ext/POSIX/Makefile.PL#19 (text) ====
Index: perl/ext/POSIX/Makefile.PL
--- perl/ext/POSIX/Makefile.PL#18~15338~ Tue Mar 19 13:10:29 2002
+++ perl/ext/POSIX/Makefile.PL Thu Dec 16 08:05:49 2004
@@ -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;
End of Patch.