]> git.pld-linux.org Git - packages/poldek.git/blame - poldek-nocolor-upgrade.patch
This commit was manufactured by cvs2git to create branch 'AC-DEVEL'.
[packages/poldek.git] / poldek-nocolor-upgrade.patch
CommitLineData
517e249f 1--- pkgcmp.c~ 2008-11-19 01:12:49.000000000 +0100
2+++ pkgcmp.c 2008-11-19 01:13:36.125519583 +0100
3@@ -82,13 +82,10 @@
4 return 1;
5
6 if (pkg->color && candidate->color)
7- return pkg->color & candidate->color;
8+ return (pkg->color & candidate->color) > 0;
9
10- /* same name and candidate without color -> promote candidate */
11- if (pkg->color && pkg_is_kind_of(candidate, pkg))
12- return 1;
13-
14- return 0;
15+ /* either new or old package contains no binary files, let it happen */
16+ return 1;
17 }
18
19 int pkg_eq_capreq(const struct pkg *pkg, const struct capreq *cr)
This page took 0.139376 seconds and 4 git commands to generate.