index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Nagy Gabor <ngaba@petra.hos.u-szeged.hu> | 2007-06-10 00:48:56 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-10 17:20:12 -0400 |
commit | 970f15d83288d55bdb0c3cc1f55ff4b8428512ae (patch) | |
tree | 11e5acd2d0e0604ed6981e96a9e71325cf7db4f9 | |
parent | da6b175d01b63b839415bcfe3b9c8eeaddf16230 (diff) |
-rw-r--r-- | lib/libalpm/deps.c | 9 |
diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index b6f8cc80..2a441d3c 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -270,12 +270,9 @@ alpm_list_t *_alpm_checkdeps(pmtrans_t *trans, pmdb_t *db, pmtranstype_t op, for(l = _alpm_db_get_pkgcache(db); l; l = l->next) { pmpkg_t *pkg = l->data; - if(strcmp(alpm_pkg_get_name(pkg), alpm_pkg_get_name(oldpkg)) == 0) { - /* well, we know this one succeeds, but we're removing it... skip it */ - continue; - } - - if(alpm_depcmp(pkg, depend)) { + if(alpm_depcmp(pkg, depend) && !_alpm_pkg_find(alpm_pkg_get_name(pkg), packages)) { + /* we ignore packages that will be updated because we know + * that the updated ones don't satisfy depend */ _alpm_log(PM_LOG_DEBUG, _("checkdeps: dependency '%s' satisfied by installed package '%s'"), depend->name, alpm_pkg_get_name(pkg)); satisfied = 1; |