From: Michael Tremer Date: Sun, 2 Oct 2011 23:20:13 +0000 (+0200) Subject: Prerequires were not correctly indexed. X-Git-Tag: 0.9.11~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f42c9c315c3f85cff63ebc506e655cdc093b0857;p=pakfire.git Prerequires were not correctly indexed. --- diff --git a/python/pakfire/repository/index.py b/python/pakfire/repository/index.py index 9b4b309fa..7e0df1aae 100644 --- a/python/pakfire/repository/index.py +++ b/python/pakfire/repository/index.py @@ -149,7 +149,7 @@ class Index(object): requires.append("solvable:prereqmarker") requires += prerequires - for req in pkg.requires: + for req in requires: rel = self.create_relation(req) solvable.add_requires(rel)