From 5c78dee3783ee1d49b5e178010e01ddcd957a203 Mon Sep 17 00:00:00 2001 From: Hartmut Brandt Date: Thu, 3 Mar 2005 10:09:39 +0000 Subject: [PATCH] Fix parsing of archive specifications on the target side of dependency lines. It seems that nobody is actually is using the archive-feature of make. --- 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 4f8dc8a2b61..3e25a8e18c6 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -764,6 +764,7 @@ ParseDoDependency(char *line) "Error in archive specification: \"%s\"", line); return; } else { + cp = line; continue; } }