On Tue, Apr 23, 2002 at 11:45:07PM -0500, Craig A. Berry wrote:
> Glad to hear it.  There is one odd thing I'm still seeing in the generated makefile:
> 
> PERLRUN = $(PERL) "-ID0:[CRAIG.EXTUTILS-MAKEMAKER]lib"
> FULLPERLRUN = $(FULLPERL) "-ID0:[CRAIG.EXTUTILS-MAKEMAKER]lib"
> 
> Those should really have the trailing 'lib' inside the bracket -- probably a catfile 
>where catdir is needed somewhere.  I don't know of specific problems this is causing 
>but it doesn't look right to me.

Index: Makefile.PL
===================================================================
RCS file: /usr/local/cvsroot/ExtUtils-MakeMaker/Makefile.PL,v
retrieving revision 1.12
diff -u -r1.12 Makefile.PL
--- Makefile.PL 7 Apr 2002 02:59:54 -0000       1.12
+++ Makefile.PL 24 Apr 2002 04:48:58 -0000
@@ -44,7 +44,7 @@
     use File::Spec;
 
     my $lib;
-    BEGIN { $lib = File::Spec->rel2abs('lib'); }
+    BEGIN { $lib = File::Spec->rel2abs('lib/'); }
 
     # Make sure PERLRUN uses the MakeMaker about to be installed
     # and not the currently installed one.


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>    http://www.pobox.com/~schwern/
Perl Quality Assurance      <[EMAIL PROTECTED]>         Kwalitee Is Job One
We're talkin' to you, weaselnuts.
        http://www.goats.com/archive/000831.html

Reply via email to