pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/bmake/files
Module Name: pkgsrc
Committed By: sevan
Date: Sun Dec 23 23:29:28 UTC 2018
Modified Files:
pkgsrc/devel/bmake/files: job.c
Log Message:
On Minix3 the call to read returns EAGAIN (-1) and causes the build to break.
Skip punting on Minix3 as workaround for now, change via sjg@
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/bmake/files/job.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/bmake/files/job.c
diff -u pkgsrc/devel/bmake/files/job.c:1.17 pkgsrc/devel/bmake/files/job.c:1.18
--- pkgsrc/devel/bmake/files/job.c:1.17 Mon Sep 10 10:16:58 2018
+++ pkgsrc/devel/bmake/files/job.c Sun Dec 23 23:29:28 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: job.c,v 1.17 2018/09/10 10:16:58 schmonz Exp $ */
+/* $NetBSD: job.c,v 1.18 2018/12/23 23:29:28 sevan 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.17 2018/09/10 10:16:58 schmonz Exp $";
+static char rcsid[] = "$NetBSD: job.c,v 1.18 2018/12/23 23:29:28 sevan 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.17 2018/09/10 10:16:58 schmonz Exp $");
+__RCSID("$NetBSD: job.c,v 1.18 2018/12/23 23:29:28 sevan Exp $");
#endif
#endif /* not lint */
#endif
@@ -2084,7 +2084,10 @@ Job_CatchOutput(void)
case 0:
Punt("unexpected eof on token pipe");
case -1:
+#ifndef __minix
Punt("token pipe read: %s", strerror(errno));
+#endif
+ break;
case 1:
if (token == DO_JOB_RESUME[0])
/* Complete relay requested from our SIGCONT handler */
Home |
Main Index |
Thread Index |
Old Index