smart - backends/rmp/metadata.py: Fix incorrect call to the match function The match function should take three parameters, name, comparison, version... The original code was passing it a reference to the object holding the data instead, which caused the comparison in match to always fail. Upstream-Status: Pending Signed-off-by: Mark Hatle --- a/smart/backends/rpm/metadata.py +++ b/smart/backends/rpm/metadata.py @@ -332,13 +332,13 @@ reqargs = [x for x in reqdict if not ((x[2] is None or "=" in x[2]) and (RPMProvides, x[1], x[3]) in prvdict or - system_provides.match(*x[:3]))] + system_provides.match(x[1], x[2], x[3]))] reqargs = collapse_libc_requires(reqargs) recargs = [x for x in recdict if not ((x[2] is None or "=" in x[2]) and (RPMProvides, x[1], x[3]) in prvdict or - system_provides.match(*x[:3]))] + system_provides.match(x[1], x[2], x[3]))] prvargs = prvdict.keys() cnfargs = cnfdict.keys() f='/cgit/multitech-oe.git/'>summaryrefslogtreecommitdiff
path: root/packages/openssl/openssl-native_0.9.8g.bb
AgeCommit message (Expand)AuthorFiles
2008-05-17openssl_0.9.8g.bb: update debian.patch to fix ssl hole (Closes: #4266)Jeremy Laine1
2008-05-16openssl-native: remove the CFLAG export, it isn't needed, contrary to my prev...Koen Kooi1
2008-05-16disapproval of revision '462968658bdc2a3c48a8d634f9be59d450259f49'Koen Kooi1
2008-05-16openssl-native_*.bb: do not export CFLAG, this is set by do_configureJeremy Laine1
2008-05-14openssl-native: also fix 0.9.7m and def-pref -1 0.9.8 since it doesn't buildKoen Kooi1
2008-05-14openssl-native: stop leaking target compile flags (FULL_OPTIMIZATION) into na...Koen Kooi1
2008-05-13openssl-native_0.9.8g.bb: bring openssl-native in sync with latest opensslJeremy Laine1