Changeset 54

Show
Ignore:
Timestamp:
07/13/06 23:05:49 (2 years ago)
Author:
evdb
Message:

Changes for deployment

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk

    • Property svn:ignore changed from
      Build
      blib
      _build
      cover_db
      to
      Build
      blib
      _build
      cover_db
      httpd.conf
  • trunk/Build.PL

    r53 r54  
    33use Module::Build; 
    44use Apache::TestMB; 
     5use Perl6::Slurp; 
     6use Cwd; 
    57 
    68#my $builder = Module::Build->new( 
     
    5961$builder->create_build_script(); 
    6062 
     63# Set up the http config so that it is correct. 
     64my $httpd_conf = slurp 'httpd.conf.tmpl'; 
     65my $here = getcwd; 
     66$httpd_conf =~ s{\@PRLMNKS_BASE\@}{$here}xmsg; 
     67 
     68open( my $OUT, ">", "httpd.conf") || die $!; 
     69print $OUT $httpd_conf; 
     70close $OUT; 
     71 
     72