=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/engine.c,v retrieving revision 1.31 retrieving revision 1.32 diff -c -r1.31 -r1.32 *** src/usr.bin/make/engine.c 2012/09/14 08:46:39 1.31 --- src/usr.bin/make/engine.c 2012/09/14 14:18:50 1.32 *************** *** 1,4 **** ! /* $OpenBSD: engine.c,v 1.31 2012/09/14 08:46:39 espie Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. * Copyright (c) 1988, 1989 by Adam de Boor --- 1,4 ---- ! /* $OpenBSD: engine.c,v 1.32 2012/09/14 14:18:50 espie Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. * Copyright (c) 1988, 1989 by Adam de Boor *************** *** 517,523 **** { char *p; ! for (p = "#!=|^(){};&<>*?[]:$`\\\n"; *p != '\0'; p++) meta[(unsigned char) *p] = 1; /* The null character serves as a sentinel in the string. */ meta[0] = 1; --- 517,523 ---- { char *p; ! for (p = "#=|^(){};&<>*?[]:$`\\\n"; *p != '\0'; p++) meta[(unsigned char) *p] = 1; /* The null character serves as a sentinel in the string. */ meta[0] = 1; *************** *** 527,533 **** recheck_command_for_shell(char **av) { char *runsh[] = { ! "alias", "cd", "eval", "exit", "read", "set", "ulimit", "unalias", "unset", "wait", "umask", NULL }; --- 527,533 ---- recheck_command_for_shell(char **av) { char *runsh[] = { ! "!", "alias", "cd", "eval", "exit", "read", "set", "ulimit", "unalias", "unset", "wait", "umask", NULL };