mirror of
https://github.com/mirror/make.git
synced 2025-02-06 17:50:48 +08:00
Formerly read.c.~44~
This commit is contained in:
parent
4cbb8e0d70
commit
fa0cf27f72
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user