=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/cmd_exec.c,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/make/cmd_exec.c 2016/03/28 11:27:37 1.10 --- src/usr.bin/make/cmd_exec.c 2020/01/16 16:07:18 1.11 *************** *** 1,4 **** ! /* $OpenBSD: cmd_exec.c,v 1.10 2016/03/28 11:27:37 chl Exp $ */ /* * Copyright (c) 2001 Marc Espie. * --- 1,4 ---- ! /* $OpenBSD: cmd_exec.c,v 1.11 2020/01/16 16:07:18 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. * *************** *** 35,40 **** --- 35,41 ---- #include "buf.h" #include "memory.h" #include "pathnames.h" + #include "job.h" char * Cmd_Exec(const char *cmd, char **err) *************** *** 67,72 **** --- 68,74 ---- /* Fork */ switch (cpid = fork()) { case 0: + reset_signal_mask(); /* Close input side of pipe */ (void)close(fds[0]);