From fa19ca391b5ff9c8ec1d47d43dabdeccc3b8f4c8 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sun, 18 Jun 1995 13:08:18 +0000 Subject: [PATCH] Fix parsing SYSV/GNU "include" --- usr.bin/make/parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index 2263a5299ec..846ce300f03 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -2439,6 +2439,7 @@ Parse_File(name, stream) } #ifdef SYSVINCLUDE } else if (strncmp (line, "include", 7) == 0 && + isspace(line[7]) && strchr(line, ':') == NULL) { /* * It's an S3/S5-style "include".