pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/bmake Fix glaring error in job.c that I fixed ba...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6e8ac0c480eb
branches:  trunk
changeset: 502139:6e8ac0c480eb
user:      tv <tv%pkgsrc.org@localhost>
date:      Wed Nov 02 18:16:04 2005 +0000

description:
Fix glaring error in job.c that I fixed back in the prehistoric
bootstrap-pkgsrc incarnation (WTERMSIG->WSTOPSIG).

diffstat:

 devel/bmake/Makefile    |  4 ++--
 devel/bmake/files/job.c |  8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (49 lines):

diff -r ee38994335e0 -r 6e8ac0c480eb devel/bmake/Makefile
--- a/devel/bmake/Makefile      Wed Nov 02 18:07:19 2005 +0000
+++ b/devel/bmake/Makefile      Wed Nov 02 18:16:04 2005 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.25 2005/11/01 00:07:20 reed Exp $
+# $NetBSD: Makefile,v 1.26 2005/11/02 18:16:04 tv Exp $
 #
 
 DISTNAME=       bmake-20051002
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    devel
 MASTER_SITES=  # empty
 DISTFILES=     # empty
diff -r ee38994335e0 -r 6e8ac0c480eb devel/bmake/files/job.c
--- a/devel/bmake/files/job.c   Wed Nov 02 18:07:19 2005 +0000
+++ b/devel/bmake/files/job.c   Wed Nov 02 18:16:04 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: job.c,v 1.1 2005/10/31 21:34:24 reed Exp $     */
+/*     $NetBSD: job.c,v 1.2 2005/11/02 18:16:04 tv Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: job.c,v 1.1 2005/10/31 21:34:24 reed Exp $";
+static char rcsid[] = "$NetBSD: job.c,v 1.2 2005/11/02 18:16:04 tv Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)job.c      8.2 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: job.c,v 1.1 2005/10/31 21:34:24 reed Exp $");
+__RCSID("$NetBSD: job.c,v 1.2 2005/11/02 18:16:04 tv Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -1109,7 +1109,7 @@
 #endif
            (void)fflush(out);
            return;
-       } else if (WIFSTOPPED(status) &&  WTERMSIG(status) == SIGCONT) {
+       } else if (WIFSTOPPED(status) &&  WSTOPSIG(status) == SIGCONT) {
            /*
             * If the beastie has continued, shift the Job from the stopped
             * list to the running one (or re-stop it if concurrency is



Home | Main Index | Thread Index | Old Index