1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-23 00:08:50 -05:00

skipped conflict resolution for targets removed from transaction set

This commit is contained in:
Aurelien Foret 2006-02-22 19:49:06 +00:00
parent 7706188979
commit 3f9ddf262d

View File

@ -471,6 +471,11 @@ int _alpm_sync_prepare(pmtrans_t *trans, pmdb_t *db_local, PMList *dbs_sync, PML
} }
sync = find_pkginsync(miss->target, trans->packages); sync = find_pkginsync(miss->target, trans->packages);
if(sync == NULL) {
_alpm_log(PM_LOG_DEBUG, "'%s' not found in transaction set -- skipping",
miss->target);
continue;
}
local = _alpm_db_get_pkgfromcache(db_local, miss->depend.name); local = _alpm_db_get_pkgfromcache(db_local, miss->depend.name);
/* check if this package also "provides" the package it's conflicting with /* check if this package also "provides" the package it's conflicting with