=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/compat.c,v retrieving revision 1.47 retrieving revision 1.48 diff -c -r1.47 -r1.48 *** src/usr.bin/make/compat.c 2002/06/12 06:07:15 1.47 --- src/usr.bin/make/compat.c 2002/07/31 19:29:20 1.48 *************** *** 1,5 **** /* $OpenPackages$ */ ! /* $OpenBSD: compat.c,v 1.47 2002/06/12 06:07:15 mpech Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* --- 1,5 ---- /* $OpenPackages$ */ ! /* $OpenBSD: compat.c,v 1.48 2002/07/31 19:29:20 mickey Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* *************** *** 283,289 **** local = true; /* Fork and execute the single command. If the fork fails, we abort. */ ! cpid = vfork(); if (cpid == -1) Fatal("Could not fork"); if (cpid == 0) { --- 283,289 ---- local = true; /* Fork and execute the single command. If the fork fails, we abort. */ ! cpid = fork(); if (cpid == -1) Fatal("Could not fork"); if (cpid == 0) {