diff options
author | SADA Kenji <sada@FreeBSD.org> | 1999-06-25 21:53:06 +0000 |
---|---|---|
committer | SADA Kenji <sada@FreeBSD.org> | 1999-06-25 21:53:06 +0000 |
commit | 57dcbe166fcc5497c0fa19b605a122665750735a (patch) | |
tree | 31c166bd2b0ab99b4ffb479e6163d19aafe104be /www/apache13 | |
parent | 28e1243c4533c88252a71d47193e126d8cc79196 (diff) | |
download | ports-57dcbe166fcc5497c0fa19b605a122665750735a.tar.gz ports-57dcbe166fcc5497c0fa19b605a122665750735a.zip |
www/apache13 rc.d startup script has /usr/local hardcoded.
PR: ports/12206
Submitted by: Matt Behrens <matt@zigg.com>
Notes
Notes:
svn path=/head/; revision=19777
Diffstat (limited to 'www/apache13')
-rw-r--r-- | www/apache13/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache13/Makefile b/www/apache13/Makefile index c1fe6e66eeb4..f9bc0e35aaed 100644 --- a/www/apache13/Makefile +++ b/www/apache13/Makefile @@ -3,7 +3,7 @@ # Date created: Fri Aug 25 16:42:36 CDT 1995 # Whom: ache@nagual.pp.ru # -# $Id: Makefile,v 1.69 1999/03/13 17:57:44 billf Exp $ +# $Id: Makefile,v 1.70 1999/03/25 22:25:43 ache Exp $ # DISTNAME= apache_1.3.6 @@ -71,7 +71,7 @@ post-install: @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; \ - echo "[ -x /usr/local/sbin/apachectl ] && /usr/local/sbin/apachectl start > /dev/null && echo -n ' apache'" >> ${PREFIX}/etc/rc.d/apache.sh; \ + echo "[ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /dev/null && echo -n ' apache'" >> ${PREFIX}/etc/rc.d/apache.sh; \ chmod 751 ${PREFIX}/etc/rc.d/apache.sh; \ fi |