mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
skipped conflict resolution for targets removed from transaction set
This commit is contained in:
parent
7706188979
commit
3f9ddf262d
@ -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);
|
||||
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);
|
||||
|
||||
/* check if this package also "provides" the package it's conflicting with
|
||||
|
Loading…
Reference in New Issue
Block a user