diff options
author | laszlof <laszlof@FreeBSD.org> | 2007-08-08 08:48:31 +0800 |
---|---|---|
committer | laszlof <laszlof@FreeBSD.org> | 2007-08-08 08:48:31 +0800 |
commit | 2dc6225a76f7b60e387aa2ce4f24124e4dcef434 (patch) | |
tree | f11a07ed829f3a10e2ab8b855100446e69d6b179 /security | |
parent | a3a4e9f7ba2347dc540ddd11531f599433324557 (diff) | |
download | freebsd-ports-gnome-2dc6225a76f7b60e387aa2ce4f24124e4dcef434.tar.gz freebsd-ports-gnome-2dc6225a76f7b60e387aa2ce4f24124e4dcef434.tar.zst freebsd-ports-gnome-2dc6225a76f7b60e387aa2ce4f24124e4dcef434.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>
Diffstat (limited to 'security')
-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: |