=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/compat.c,v retrieving revision 1.68 retrieving revision 1.69 diff -c -r1.68 -r1.69 *** src/usr.bin/make/compat.c 2007/11/10 13:59:48 1.68 --- src/usr.bin/make/compat.c 2008/01/29 22:23:10 1.69 *************** *** 1,5 **** /* $OpenPackages$ */ ! /* $OpenBSD: compat.c,v 1.68 2007/11/10 13:59:48 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* --- 1,5 ---- /* $OpenPackages$ */ ! /* $OpenBSD: compat.c,v 1.69 2008/01/29 22:23:10 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* *************** *** 127,133 **** /* Our commands are ok, but we still have to worry * about the -t flag... */ if (!touchFlag) ! run_gnode(gn, 0); else Job_Touch(gn); } else --- 127,133 ---- /* Our commands are ok, but we still have to worry * about the -t flag... */ if (!touchFlag) ! run_gnode(gn); else Job_Touch(gn); } else *************** *** 216,222 **** /* If the user has defined a .BEGIN target, execute the commands * attached to it. */ if (!queryFlag) { ! if (run_gnode(begin_node, 0) == ERROR) { printf("\n\nStop.\n"); exit(1); } --- 216,222 ---- /* If the user has defined a .BEGIN target, execute the commands * attached to it. */ if (!queryFlag) { ! if (run_gnode(begin_node) == ERROR) { printf("\n\nStop.\n"); exit(1); } *************** *** 247,251 **** /* If the user has defined a .END target, run its commands. */ if (errors == 0) ! run_gnode(end_node, 0); } --- 247,251 ---- /* If the user has defined a .END target, run its commands. */ if (errors == 0) ! run_gnode(end_node); }