1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

sync_prepare: remove useless check for replacers

Since 017184fa, alpm_sync_sysupgrade will not add both a replacement and
a literal upgrade to the transaction.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Andrew Gregory 2014-03-24 09:59:44 -04:00 committed by Allan McRae
parent 71da296d01
commit 9506409c3f

View File

@ -424,8 +424,6 @@ int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data)
alpm_pkg_t *spkg = i->data;
for(j = spkg->removes; j; j = j->next) {
remove = alpm_list_add(remove, j->data);
/* do not re-install a (replaced) package even if an update is available */
trans->add = alpm_list_remove(trans->add, j->data, _alpm_pkg_cmp, NULL);
}
}