diff options
author | Frank J. Laszlo <laszlof@FreeBSD.org> | 2007-08-08 00:48:31 +0000 |
---|---|---|
committer | Frank J. Laszlo <laszlof@FreeBSD.org> | 2007-08-08 00:48:31 +0000 |
commit | 8a1da4098265b271cb2218ef5cdca0bda4255ce2 (patch) | |
tree | b1873303c81a75c19a41a3ca386e0b04ade60200 | |
parent | 8966612e1a1df696ebd68ed917e523aff036f420 (diff) | |
download | ports-8a1da4098265b271cb2218ef5cdca0bda4255ce2.tar.gz ports-8a1da4098265b271cb2218ef5cdca0bda4255ce2.zip |
- mussh uses seq for concurrency measures which is not available on
FreeBSD. replaced with jot.
- bump PORTREVISION
PR: ports/115278
Submitted by: Richard Arends <richard@unixguru.nl>
Notes
Notes:
svn path=/head/; revision=197319
-rw-r--r-- | security/mussh/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/mussh/Makefile b/security/mussh/Makefile index ed04a4ad938a..095cf399da36 100644 --- a/security/mussh/Makefile +++ b/security/mussh/Makefile @@ -7,6 +7,7 @@ PORTNAME= mussh PORTVERSION= 0.7 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -24,6 +25,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME} post-patch: @${REINPLACE_CMD} -e "s,^#!/bin/bash,#!/usr/bin/env bash,g" \ + -e "s,seq 1 ,jot 1 ,g" \ ${WRKSRC}/${PORTNAME} do-install: |