Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Jan 2015 14:35:04 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r375921 - in head/shells/zsh: . files
Message-ID:  <201501011435.t01EZ4eh057637@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu Jan  1 14:35:03 2015
New Revision: 375921
URL: https://svnweb.freebsd.org/changeset/ports/375921
QAT: https://qat.redports.org/buildarchive/r375921/

Log:
  Correct time report after r367805
  
  PR:		367805
  Submitted by:	peterj

Modified:
  head/shells/zsh/Makefile
  head/shells/zsh/files/patch-Src_jobs.c

Modified: head/shells/zsh/Makefile
==============================================================================
--- head/shells/zsh/Makefile	Thu Jan  1 13:42:14 2015	(r375920)
+++ head/shells/zsh/Makefile	Thu Jan  1 14:35:03 2015	(r375921)
@@ -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

Modified: head/shells/zsh/files/patch-Src_jobs.c
==============================================================================
--- head/shells/zsh/files/patch-Src_jobs.c	Thu Jan  1 13:42:14 2015	(r375920)
+++ head/shells/zsh/files/patch-Src_jobs.c	Thu Jan  1 14:35:03 2015	(r375921)
@@ -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;



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