diff options
author | Paul Richards <paul@FreeBSD.org> | 2000-04-06 07:06:19 +0800 |
---|---|---|
committer | Paul Richards <paul@FreeBSD.org> | 2000-04-06 07:06:19 +0800 |
commit | 2e4b0566cb81146582c11baf885e2f0e987119bb (patch) | |
tree | 26efe40f172bef2c72ef981d9d093841c28dbc10 /www/apache13-modssl | |
parent | 810b23015a0381c37aaa2071cb7b425d30ff42e7 (diff) | |
download | freebsd-ports-gnome-2e4b0566cb81146582c11baf885e2f0e987119bb.tar.gz freebsd-ports-gnome-2e4b0566cb81146582c11baf885e2f0e987119bb.tar.zst freebsd-ports-gnome-2e4b0566cb81146582c11baf885e2f0e987119bb.zip |
The wildcard removal of config files in post-install was removing
all config files rather than just the old default files.
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache13-modssl/Makefile b/www/apache13-modssl/Makefile index 9f286e2b79e3..795115b42e8a 100644 --- a/www/apache13-modssl/Makefile +++ b/www/apache13-modssl/Makefile @@ -123,8 +123,8 @@ certificate: && ${MAKE} certificate TYPE=${TYPE} CRT=${CRT} KEY=${KEY} post-install: - @${RM} -f ${PREFIX}/etc/apache/access.conf* - @${RM} -f ${PREFIX}/etc/apache/srm.conf* + @${RM} -f ${PREFIX}/etc/apache/access.conf.* + @${RM} -f ${PREFIX}/etc/apache/srm.conf.* @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \ ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/apache.sh; \ |