summaryrefslogtreecommitdiff
path: root/devel/bmake/files/compat.c
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2010-04-24 20:33:51 +0000
committerjoerg <joerg@pkgsrc.org>2010-04-24 20:33:51 +0000
commit80199590869cf77565b0b4dea7357b2043cbcd15 (patch)
treef86a3ee04f84e05b9348275194c962790f9c8f02 /devel/bmake/files/compat.c
parent75156626a2b9871f49248f4d7653cef0267f9214 (diff)
downloadpkgsrc-80199590869cf77565b0b4dea7357b2043cbcd15.tar.gz
Import bmake-20100423:
- Fixes for vfork(), bogus $TMPDIR, .export and realpath(3) - boot-strap fixes to allow -m .../mk, no default use of /usr/share/mk on !NetBSD, honor --with-default-sys-path - Other small improvements
Diffstat (limited to 'devel/bmake/files/compat.c')
-rw-r--r--devel/bmake/files/compat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/bmake/files/compat.c b/devel/bmake/files/compat.c
index a3314d1748c..b7f8e031073 100644
--- a/devel/bmake/files/compat.c
+++ b/devel/bmake/files/compat.c
@@ -1,4 +1,4 @@
-/* $NetBSD: compat.c,v 1.1.1.5 2010/04/20 13:32:19 joerg Exp $ */
+/* $NetBSD: compat.c,v 1.1.1.6 2010/04/24 20:33:52 joerg Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: compat.c,v 1.1.1.5 2010/04/20 13:32:19 joerg Exp $";
+static char rcsid[] = "$NetBSD: compat.c,v 1.1.1.6 2010/04/24 20:33:52 joerg Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: compat.c,v 1.1.1.5 2010/04/20 13:32:19 joerg Exp $");
+__RCSID("$NetBSD: compat.c,v 1.1.1.6 2010/04/24 20:33:52 joerg Exp $");
#endif
#endif /* not lint */
#endif
@@ -358,7 +358,7 @@ again:
/*
* Fork and execute the single command. If the fork fails, we abort.
*/
- cpid = vfork();
+ cpid = vFork();
if (cpid < 0) {
Fatal("Could not fork");
}