* pkg.c (recursive_fill_list): Make sure to act recursively with

Requires.private, making them much more useful.  Special thanks to
Matthias Clasen for lots and lots of nagging.  Freedesktop #8788
This commit is contained in:
Tollef Fog Heen 2007-06-18 23:19:27 +02:00
parent 9c6db22935
commit 8ac159cd5e
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,9 @@
2007-06-18 Tollef Fog Heen <tfheen@err.no>
* pkg.c (recursive_fill_list): Make sure to act recursively with
Requires.private, making them much more useful. Special thanks to
Matthias Clasen for lots and lots of nagging. Freedesktop #8788
* glib-patches/remove-strsignal-prototype.diff: define _GNU_SOURCE
there to get strsignal prototype, addresses the rest of
Freedesktop 10652.

2
pkg.c
View file

@ -617,7 +617,7 @@ recursive_fill_list (Package *pkg, GetListFunc func, GSList **listp)
fill_one_level (pkg, func, listp);
tmp = pkg->requires;
tmp = (*func) (pkg);
while (tmp != NULL)
{