mirror of
https://github.com/mirror/make.git
synced 2025-04-03 16:10:19 +08:00
Formerly read.c.~68~
This commit is contained in:
parent
9012e6a254
commit
3aeb946943
6
read.c
6
read.c
@ -1537,7 +1537,11 @@ parse_file_seq (stringp, stopchar, size, strip)
|
||||
lastn = n;
|
||||
n = n->next;
|
||||
}
|
||||
if (n != 0)
|
||||
if (n != 0
|
||||
/* Ignore something starting with `(', as that cannot actually
|
||||
be an archive-member reference (and treating it as such
|
||||
results in an empty file name, which causes much lossage). */
|
||||
&& n->name[0] != '(')
|
||||
{
|
||||
/* N is the first element in the archive group.
|
||||
Its name looks like "lib(mem" (with no closing `)'). */
|
||||
|
Loading…
Reference in New Issue
Block a user