diff options
author | tv <tv@pkgsrc.org> | 2005-11-02 18:16:04 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-11-02 18:16:04 +0000 |
commit | 50443ded290ff2355bbd6d5a39056aff74c98b68 (patch) | |
tree | 037c4965ffaa437904677d621582452354d8ec4f /devel/bmake | |
parent | a3e2f3399bcb48a1e58ad56f64c4936cc74b0cfa (diff) | |
download | pkgsrc-50443ded290ff2355bbd6d5a39056aff74c98b68.tar.gz |
Fix glaring error in job.c that I fixed back in the prehistoric
bootstrap-pkgsrc incarnation (WTERMSIG->WSTOPSIG).
Diffstat (limited to 'devel/bmake')
-rw-r--r-- | devel/bmake/Makefile | 4 | ||||
-rw-r--r-- | devel/bmake/files/job.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile index 2da33521a6a..543ac44459a 100644 --- a/devel/bmake/Makefile +++ b/devel/bmake/Makefile @@ -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 --git a/devel/bmake/files/job.c b/devel/bmake/files/job.c index 363f51b90ed..79a59aecc9c 100644 --- a/devel/bmake/files/job.c +++ b/devel/bmake/files/job.c @@ -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 @@ JobFinish (Job *job, WAIT_T status) #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 |