mirror of
https://github.com/mirror/make.git
synced 2025-03-26 12:04:42 +08:00
Formerly read.c.~27~
This commit is contained in:
parent
008dab1b25
commit
a7ec3f0576
8
read.c
8
read.c
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1988, 1989, 1990, 1991 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
|
||||
This file is part of GNU Make.
|
||||
|
||||
GNU Make is free software; you can redistribute it and/or modify
|
||||
@ -127,7 +127,11 @@ read_all_makefiles (makefiles)
|
||||
MAKEFILES is updated for finding remaining tokens. */
|
||||
p = value;
|
||||
while ((name = find_next_token (&p, &length)) != 0)
|
||||
read_makefile (name, 1);
|
||||
{
|
||||
if (*p != '\0')
|
||||
*p++ = '\0';
|
||||
read_makefile (name, 1);
|
||||
}
|
||||
|
||||
free (value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user