diff options
author | vanilla <vanilla@FreeBSD.org> | 1998-12-06 09:34:31 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 1998-12-06 09:34:31 +0000 |
commit | fd934f383f00f3b69413e36bab16fde269708172 (patch) | |
tree | e1b5676d5a2e92dca171f8083e7bf3e659cc69a6 /security | |
parent | 0ee617ba62ccb696aa9a6d8b527fd1b4d5d7b45e (diff) | |
download | FreeBSD-ports-fd934f383f00f3b69413e36bab16fde269708172.zip FreeBSD-ports-fd934f383f00f3b69413e36bab16fde269708172.tar.gz |
Fix typo error in Makefile.
PR: ports/8982
Submitted by: Terry Liao <ijliao@Terry.Dorm10.NCTU.edu.tw>
Diffstat (limited to 'security')
-rw-r--r-- | security/xinetd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/xinetd/Makefile b/security/xinetd/Makefile index e49b35c..5adc271 100644 --- a/security/xinetd/Makefile +++ b/security/xinetd/Makefile @@ -3,7 +3,7 @@ # Date created: 28 June 1996 # Whom: markm # -# $Id: Makefile,v 1.4 1997/12/04 03:40:06 vanilla Exp $ +# $Id: Makefile,v 1.5 1998/07/11 00:37:00 steve Exp $ # DISTNAME= xinetd-2.2.1 @@ -28,7 +28,7 @@ post-install: @if [ ! -f ${PREFIX}/etc/rc.d/xinetd.sh ]; then \ ${ECHO} "Install ${PREFIX}/etc/rc.d/xinetd.sh startup file."; \ ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/xinetd.sh; \ - ${ECHO} "[ -x ${PREFIX}/sbin/xinetd ] && ${PREFIX}/sbin/xinetd && echo -n' xinetd'" >> ${PREFIX}/etc/rc.d/xinetd.sh; \ + ${ECHO} "[ -x ${PREFIX}/sbin/xinetd ] && ${PREFIX}/sbin/xinetd && echo -n ' xinetd'" >> ${PREFIX}/etc/rc.d/xinetd.sh; \ chmod 751 ${PREFIX}/etc/rc.d/xinetd.sh; \ fi |