diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2005-02-09 06:16:21 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2005-02-09 06:16:21 +0000 |
commit | 86a1133ffc3d2099dce9492ddccf8516f804c4c2 (patch) | |
tree | 6d6c45f42104732f1445dbb32638934fd6ef7655 /www/apache13-modssl/files | |
parent | * Remove the font cache built by fc-cache in POST-INSTALL phase (diff) |
- don't create a backup of httpd.conf
- de-ugly-ing filename
Obtained from: ports/www/apache13-modperl/files/patch-src:support:apxs.pl
Notes
Notes:
svn path=/head/; revision=128334
Diffstat (limited to 'www/apache13-modssl/files')
-rw-r--r-- | www/apache13-modssl/files/patch-apxs.pl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/apache13-modssl/files/patch-apxs.pl b/www/apache13-modssl/files/patch-apxs.pl new file mode 100644 index 000000000000..9c1596e0cb70 --- /dev/null +++ b/www/apache13-modssl/files/patch-apxs.pl @@ -0,0 +1,15 @@ +--- src/support/apxs.pl.orig Mon Nov 29 21:05:12 2004 ++++ src/support/apxs.pl Mon Nov 29 21:05:56 2004 +@@ -604,12 +604,10 @@ + print FP $content; + close(FP); + if ($^O ne "MSWin32") { +- push(@cmds, "cp $cfgbase.conf $cfgbase.conf.bak"); + push(@cmds, "cp $cfgbase.conf.new $cfgbase.conf"); + push(@cmds, "rm $cfgbase.conf.new"); + } else { + $cfgbase =~ s|/|\\|g; +- push(@cmds, "copy \"$cfgbase.conf\" \"$cfgbase.conf.bak\""); + push(@cmds, "copy \"$cfgbase.conf.new\" \"$cfgbase.conf\""); + push(@cmds, "del \"$cfgbase.conf.new\""); + } |