diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-08-21 09:25:28 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-08-21 09:25:28 +0000 |
commit | 2e655475ff896764330e4689f7c830d8b887bc0b (patch) | |
tree | 4fed23fbed4c3e4fca10a783eafd403c6e0c6d4b | |
parent | Added youbin. (diff) |
Remove spurious ";" after "then". Indend one chmod line to match
the rest of its buddies.
Notes
Notes:
svn path=/head/; revision=3673
-rw-r--r-- | mail/youbin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/youbin/Makefile b/mail/youbin/Makefile index 8bb5a13bca77..46963dc8e0c1 100644 --- a/mail/youbin/Makefile +++ b/mail/youbin/Makefile @@ -3,7 +3,7 @@ # Date created: 09 Aug 1996 # Whom: Masafumi NAKANE <max@sfc.wide.ad.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1996/08/21 09:06:53 asami Exp $ # DISTNAME= youbin-2.13 @@ -21,7 +21,7 @@ PREFIX= ${LOCALBASE} STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/youbind.sh post-install: - @if [ ! -f ${STARTUP_SCRIPT} ]; then; \ + @if [ ! -f ${STARTUP_SCRIPT} ]; then \ echo "Creating startup script '${STARTUP_SCRIPT}'" ;\ echo "#!/bin/sh" > ${STARTUP_SCRIPT} ;\ echo "if [ -f ${PREFIX}/sbin/youbind ]; then" >> \ @@ -29,7 +29,7 @@ post-install: echo " ${PREFIX}/sbin/youbind &; echo -n ' youbind'" >> \ ${STARTUP_SCRIPT} ;\ echo "fi" >> ${STARTUP_SCRIPT} ;\ - chmod 755 ${STARTUP_SCRIPT} ;\ + chmod 755 ${STARTUP_SCRIPT} ;\ fi @-(grep -v ^# /etc/inetd.conf | grep comsat > /dev/null) && \ (echo "Now you need to edit /etc/inetd.conf and comment out the" ;\ |