Changeset 54
- Timestamp:
- 07/13/06 23:05:49 (2 years ago)
- Files:
-
- trunk (modified) (1 prop)
- trunk/Build.PL (modified) (2 diffs)
- trunk/bin/deploy-locally.bash (added)
- trunk/deployment-steps.txt (deleted)
- trunk/httpd.conf.tmpl (added)
- trunk/misc (deleted)
- trunk/old (moved) (moved from trunk/bin_old)
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
- Property svn:ignore changed from
trunk/Build.PL
r53 r54 3 3 use Module::Build; 4 4 use Apache::TestMB; 5 use Perl6::Slurp; 6 use Cwd; 5 7 6 8 #my $builder = Module::Build->new( … … 59 61 $builder->create_build_script(); 60 62 63 # Set up the http config so that it is correct. 64 my $httpd_conf = slurp 'httpd.conf.tmpl'; 65 my $here = getcwd; 66 $httpd_conf =~ s{\@PRLMNKS_BASE\@}{$here}xmsg; 67 68 open( my $OUT, ">", "httpd.conf") || die $!; 69 print $OUT $httpd_conf; 70 close $OUT; 71 72
