diff options
author | asami <asami@FreeBSD.org> | 1996-08-21 17:25:28 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-08-21 17:25:28 +0800 |
commit | 4bb89116b5fc93419744a15d394ceb5eef14f245 (patch) | |
tree | bca160bd1d4abb8d03e84716180fba299d64f398 /mail | |
parent | 07ce22bf0dc299d3ce5c8612d6deaa6bf77a1c61 (diff) | |
download | freebsd-ports-gnome-4bb89116b5fc93419744a15d394ceb5eef14f245.tar.gz freebsd-ports-gnome-4bb89116b5fc93419744a15d394ceb5eef14f245.tar.zst freebsd-ports-gnome-4bb89116b5fc93419744a15d394ceb5eef14f245.zip |
Remove spurious ";" after "then". Indend one chmod line to match
the rest of its buddies.
Diffstat (limited to 'mail')
-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" ;\ |