mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-12 00:16:30 +00:00
Formerly read.c.~44~
This commit is contained in:
parent
4cbb8e0d70
commit
fa0cf27f72
1 changed files with 9 additions and 4 deletions
13
read.c
13
read.c
|
@ -1182,10 +1182,15 @@ record_files (filenames, pattern, pattern_percent, deps, commands_started,
|
||||||
moredeps = this;
|
moredeps = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
d = firstdeps;
|
if (firstdeps == 0)
|
||||||
while (d->next != 0)
|
firstdeps = moredeps;
|
||||||
d = d->next;
|
else
|
||||||
d->next = moredeps;
|
{
|
||||||
|
d = firstdeps;
|
||||||
|
while (d->next != 0)
|
||||||
|
d = d->next;
|
||||||
|
d->next = moredeps;
|
||||||
|
}
|
||||||
|
|
||||||
f->deps = firstdeps;
|
f->deps = firstdeps;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue