summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/make/engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/engine.c b/usr.bin/make/engine.c
index 5b147bed0e8..cc6cb79ee59 100644
--- a/usr.bin/make/engine.c
+++ b/usr.bin/make/engine.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: engine.c,v 1.30 2012/08/25 08:12:56 espie Exp $ */
+/* $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
@@ -517,7 +517,7 @@ setup_meta(void)
{
char *p;
- for (p = "#=|^(){};&<>*?[]:$`\\\n"; *p != '\0'; 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;