Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Apr 2000 15:09:36 +0300 (EEST)
From:      ejk@iki.fi
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/17947: ssh port doesn't complete install phase
Message-ID:  <200004121209.PAA93410@edelfelt.albert.hit.fi>

next in thread | raw e-mail | index | archive | help

>Number:         17947
>Category:       ports
>Synopsis:       ssh port doesn't complete install phase
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Apr 12 05:10:01 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     Esa Karkkainen
>Release:        FreeBSD 3.3-STABLE i386
>Organization:
>Environment:

	All

>Description:

	Missing ";" in post-install section of ports/security/ssh/Makefile
	and binary garbage is added to end of ${PREFIX}/etc/rc.d/sshd.sh
	file.

>How-To-Repeat:

	rm -f /usr/local/etc/rc.d/sshd.sh ; cd /usr/ports/security/ssh ;
		make clean && make all && make install

>Fix:

--- Makefile.orig	Wed Apr 12 15:01:49 2000
+++ Makefile	Wed Apr 12 15:02:23 2000
@@ -109,7 +109,7 @@
 	@if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \
 		${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \
 		${SED} -e 's+!!PREFIX!!+${PREFIX}+g' ${FILESDIR}/sshd.sh \
-			> ${PREFIX}/etc/rc.d/sshd.sh \
+			> ${PREFIX}/etc/rc.d/sshd.sh; \
 		${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \
 	fi
 

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200004121209.PAA93410>