mirror of
https://github.com/mirror/make.git
synced 2026-08-09 17:38:47 +00:00
Formerly read.c.~44~
This commit is contained in:
13
read.c
13
read.c
@@ -1182,10 +1182,15 @@ record_files (filenames, pattern, pattern_percent, deps, commands_started,
|
||||
moredeps = this;
|
||||
}
|
||||
|
||||
d = firstdeps;
|
||||
while (d->next != 0)
|
||||
d = d->next;
|
||||
d->next = moredeps;
|
||||
if (firstdeps == 0)
|
||||
firstdeps = moredeps;
|
||||
else
|
||||
{
|
||||
d = firstdeps;
|
||||
while (d->next != 0)
|
||||
d = d->next;
|
||||
d->next = moredeps;
|
||||
}
|
||||
|
||||
f->deps = firstdeps;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user