Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Aug 2007 21:08:34 +0200 (CEST)
From:      Richard Arends <richard@unixguru.nl>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/115278: mussh uses seq instead of jot
Message-ID:  <200708071908.l77J8YKw034939@shell.unixguru.nl>
Resent-Message-ID: <200708071930.l77JU14p036714@freefall.freebsd.org>

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

>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@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:



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