diff options
Diffstat (limited to 'dev-util/pkgcore-checks/files/pkgcore-checks-0.4-fix.patch')
-rw-r--r-- | dev-util/pkgcore-checks/files/pkgcore-checks-0.4-fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-util/pkgcore-checks/files/pkgcore-checks-0.4-fix.patch b/dev-util/pkgcore-checks/files/pkgcore-checks-0.4-fix.patch new file mode 100644 index 000000000000..4254a43616bd --- /dev/null +++ b/dev-util/pkgcore-checks/files/pkgcore-checks-0.4-fix.patch @@ -0,0 +1,13 @@ +=== modified file 'pkgcore_checks/visibility.py' +--- pkgcore_checks/visibility.py 2007-04-05 18:41:54 +0000 ++++ pkgcore_checks/visibility.py 2007-07-07 22:56:25 +0000 +@@ -130,6 +130,8 @@ + nonexistant.add(node) + self.query_cache[h] = () + self.profiles.global_insoluable.add(h) ++ elif not self.query_cache[h]: ++ nonexistant.add(node) + + if nonexistant: + reporter.add_report(NonExistantDeps(pkg, attr, nonexistant)) + |