cvsuser     02/04/15 20:53:03

  Modified:    P5EEx/Blue Makefile.PL
  Log:
  install CGI programs into CGIDIR, not a subdirectory of that
  
  Revision  Changes    Path
  1.15      +4 -3      p5ee/P5EEx/Blue/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /cvs/public/p5ee/P5EEx/Blue/Makefile.PL,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -w -r1.14 -r1.15
  --- Makefile.PL       5 Apr 2002 21:56:04 -0000       1.14
  +++ Makefile.PL       16 Apr 2002 03:53:03 -0000      1.15
  @@ -1,6 +1,6 @@
   
   ######################################################################
  -## File: $Id: Makefile.PL,v 1.14 2002/04/05 21:56:04 spadkins Exp $
  +## File: $Id: Makefile.PL,v 1.15 2002/04/16 03:53:03 spadkins Exp $
   ######################################################################
   
   use ExtUtils::MakeMaker;
  @@ -88,7 +88,7 @@
       $CGIDIR = "$PREFIX/cgi-bin";
   }
   $opts{'INST_HTMLSCRIPTDIR'} = 'cgi-bin';        # local build area
  -$opts{'INSTALLHTMLSCRIPTDIR'} = "$CGIDIR/$opts{NAME}";  # install area
  +$opts{'INSTALLHTMLSCRIPTDIR'} = "$CGIDIR";  # install area
   
   ######################################################################
   # TEMPLATES
  @@ -100,6 +100,7 @@
   else {
       $TEMPLATEDIR = "$PREFIX/templates";
   }
  +
   # oops. INSTALLSCRIPT is where programs should go, i.e. $PREFIX/bin
   # I had better find another way to install templates in the right place
   $opts{'INST_SCRIPT'} = 'templates';        # local build area
  
  
  


Reply via email to