diff options
author | Tollef Fog Heen <tfheen@err.no> | 2007-06-18 23:19:27 +0200 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2007-06-18 23:19:27 +0200 |
commit | 8ac159cd5e97b7aab8f64209013c4dbbc080b6d1 (patch) | |
tree | 12c588961ea93db88fb3e45ba6c97295a6dad0b5 | |
parent | 9c6db2293560a8670943e6cd0176d25e49753e0f (diff) |
* 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | pkg.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. @@ -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) { |