dougm       01/01/26 08:42:50

  Modified:    src/modules/perl Makefile
  Log:
  fix for the Config.pm overridding mechanism (used for stripping lfs flags, etc)
  
  Revision  Changes    Path
  1.13      +3 -3      modperl/src/modules/perl/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/Makefile,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile  2000/12/23 02:23:09     1.12
  +++ Makefile  2001/01/26 16:42:49     1.13
  @@ -50,7 +50,7 @@
   # 
   # Makefile for the Apache mod_perl library
   # 
  -# $Id: Makefile,v 1.12 2000/12/23 02:23:09 dougm Exp $
  +# $Id: Makefile,v 1.13 2001/01/26 16:42:49 dougm Exp $
   #
   
   #__ORIGINAL__
  @@ -102,7 +102,7 @@
   #APACHE_SSL = 
   PERL=/usr/bin/perl
   PERL_STATIC_EXTS =
  -PERL5LIB=`$(PERL) -MConfig -e 'print $$Config{privlibexp}'`
  +PRIVLIB=`$(PERL) -MConfig -e 'print $$Config{privlibexp}'`
   EXTUTILS_EMBED = $(PERL) -MExtUtils::Embed
   #CONFIG_PM=-MConfig
   CONFIG_PM='-MApache::ExtUtils=%Config'
  @@ -129,7 +129,7 @@
        $(XS_INIT) 
   
   .xs.c:
  -     $(PERL) $(PERL5LIB)/ExtUtils/xsubpp -typemap $(PERL5LIB)/ExtUtils/typemap 
$*.xs > $@
  +     $(PERL) $(PRIVLIB)/ExtUtils/xsubpp -typemap $(PRIVLIB)/ExtUtils/typemap $*.xs 
> $@
   
   PERLSRC=mod_perl_opmask.c mod_perl.c perlxsi.c perl_config.c perl_util.c perlio.c 
$(STATIC_SRC)
   
  
  
  

Reply via email to