mirror of
https://github.com/mirror/make.git
synced 2025-02-06 17:50:48 +08:00
Formerly vpath.c.~8~
This commit is contained in:
parent
7444af63fc
commit
9a1a8d0dc6
6
vpath.c
6
vpath.c
@ -191,9 +191,8 @@ construct_vpath_list (pattern, dirpath)
|
|||||||
if (len > 1 && p[-1] == '/')
|
if (len > 1 && p[-1] == '/')
|
||||||
--len;
|
--len;
|
||||||
|
|
||||||
if (len == 1 && *v == '.')
|
if (len > 1 || *v != '.')
|
||||||
continue;
|
{
|
||||||
|
|
||||||
v = savestring (v, len);
|
v = savestring (v, len);
|
||||||
|
|
||||||
/* Verify that the directory actually exists. */
|
/* Verify that the directory actually exists. */
|
||||||
@ -209,6 +208,7 @@ construct_vpath_list (pattern, dirpath)
|
|||||||
else
|
else
|
||||||
/* The directory does not exist. Omit from the list. */
|
/* The directory does not exist. Omit from the list. */
|
||||||
free (v);
|
free (v);
|
||||||
|
}
|
||||||
|
|
||||||
/* Skip over colons and blanks between entries. */
|
/* Skip over colons and blanks between entries. */
|
||||||
while (*p == ':' || isblank (*p))
|
while (*p == ':' || isblank (*p))
|
||||||
|
Loading…
Reference in New Issue
Block a user