mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-25 04:35:44 +00:00
Formerly vpath.c.~10~
This commit is contained in:
parent
f3bd744187
commit
164dcdad22
1 changed files with 6 additions and 2 deletions
8
vpath.c
8
vpath.c
|
@ -346,8 +346,12 @@ selective_vpath_search (path, file, mtime_ptr)
|
|||
|
||||
/* Now add the name-within-directory at the end of NAME. */
|
||||
if (n != name && n[-1] != '/')
|
||||
*n = '/';
|
||||
bcopy (filename, n + 1, flen + 1);
|
||||
{
|
||||
*n = '/';
|
||||
bcopy (filename, n + 1, flen + 1);
|
||||
}
|
||||
else
|
||||
bcopy (filename, n, flen + 1);
|
||||
|
||||
if (not_target)
|
||||
/* Since *FILE is not a target, if the file is
|
||||
|
|
Loading…
Reference in a new issue