diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index 145cb714c9e5..10ffcaad30d8 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -3,7 +3,7 @@ PORTNAME= zsh PORTVERSION= 5.0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= shells MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ SF/${PORTNAME}/${PORTNAME}-doc/${PORTVERSION}:doc diff --git a/shells/zsh/files/patch-Src_jobs.c b/shells/zsh/files/patch-Src_jobs.c index f9f6a72acae5..6b92999146fc 100644 --- a/shells/zsh/files/patch-Src_jobs.c +++ b/shells/zsh/files/patch-Src_jobs.c @@ -1,6 +1,6 @@ --- Src/jobs.c.orig 2014-08-23 20:40:52.000000000 +0200 +++ Src/jobs.c 2014-09-10 10:33:50.283018759 +0200 -@@ -694,15 +694,14 @@ +@@ -694,15 +694,15 @@ /* go ahead and compute these, since almost every TIMEFMT will have them */ elapsed_time = real->tv_sec + real->tv_usec / 1000000.0; @@ -8,7 +8,7 @@ #ifdef HAVE_GETRUSAGE user_time = ti->ru_utime.tv_sec + ti->ru_utime.tv_usec / 1000000.0; system_time = ti->ru_stime.tv_sec + ti->ru_stime.tv_usec / 1000000.0; -- total_time = user_time + system_time; + total_time = user_time + system_time; - percent = 100.0 * total_time - / (real->tv_sec + real->tv_usec / 1000000.0); + percent = 100.0 * total_time / elapsed_time;