stas        2003/11/07 01:46:56

  Modified:    .        Makefile.PL
  Log:
  this is silly, but people do carry _0x dev released of ExtUtils::MakeMaker
  ("6.10_03" > 6.10 doesn't make perl happy)
  
  Revision  Changes    Path
  1.132     +2 -1      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.131
  retrieving revision 1.132
  diff -u -u -r1.131 -r1.132
  --- Makefile.PL       7 Nov 2003 08:38:23 -0000       1.131
  +++ Makefile.PL       7 Nov 2003 09:46:56 -0000       1.132
  @@ -478,7 +478,8 @@
       # $(ECHO) was broken before 6.10_01
       # XXX: if ever require 6.11 we can remove this workaround
       require ExtUtils::MakeMaker;
  -    my $say = ExtUtils::MakeMaker->VERSION > 6.10
  +    (my $mm_ver = ExtUtils::MakeMaker->VERSION) =~ s/_\d+//;
  +    my $say = $mm_ver > 6.10
           ? '@$(ECHO)'
           : '@$(PERL) -le "print shift"';
   
  
  
  

Reply via email to