ports/115278: mussh uses seq instead of jot

Richard Arends richard at unixguru.nl
Tue Aug 7 19:30:02 UTC 2007


>Number:         115278
>Category:       ports
>Synopsis:       mussh uses seq instead of jot
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 07 19:30:01 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Richard Arends
>Release:        FreeBSD 6.2-RELEASE-p4 i386
>Organization:
>Environment:
System: FreeBSD shell.unixguru.nl 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root at i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386


>Description:
	mussh uses seq for concurrency measures which is not available on
	FreeBSD.

>How-To-Repeat:
	Install mussh and use the -m option
	
>Fix:
	Use jot instead of seq. The following patch fixes this.


diff -ruN mussh.orig/Makefile mussh/Makefile
--- mussh.orig/Makefile	2007-08-07 20:58:41.000000000 +0200
+++ mussh/Makefile	2007-08-07 20:58:03.000000000 +0200
@@ -25,6 +25,8 @@
 post-patch:
 	@${REINPLACE_CMD} -e "s,^#!/bin/bash,#!/usr/bin/env bash,g" \
 		${WRKSRC}/${PORTNAME}
+	@${REINPLACE_CMD} -e "s,seq 1 ,jot 1 ,g" \
+		${WRKSRC}/${PORTNAME}
 
 do-install:
 	@${MKDIR} ${PREFIX}/bin
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list