mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
Do not warn about packages that optionally require a removal when ignoring deps
If a transaction is removing a package while ignoring all dependencies, there should not be any warning about other packages optionally requiring it. Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
ff487212a2
commit
94204d1089
@ -261,7 +261,9 @@ int _alpm_remove_prepare(alpm_handle_t *handle, alpm_list_t **data)
|
||||
}
|
||||
|
||||
/* Note packages being removed that are optdepends for installed packages */
|
||||
remove_notify_needed_optdepends(handle, trans->remove);
|
||||
if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) {
|
||||
remove_notify_needed_optdepends(handle, trans->remove);
|
||||
}
|
||||
|
||||
if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) {
|
||||
event.type = ALPM_EVENT_CHECKDEPS_DONE;
|
||||
|
Loading…
Reference in New Issue
Block a user