summaryrefslogtreecommitdiffstats
path: root/lib/libalpm
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2016-02-21 07:43:36 +0100
committerAllan McRae <allan@archlinux.org>2016-02-26 06:18:43 +0100
commit3da06c3519ad8df60ce8c067cdaeddb69a320a53 (patch)
treeaa3bbca8d27719c8b9c5780455bddeaa2d79c0eb /lib/libalpm
parent59112e186b5c64350db79f39574c6927a10346b6 (diff)
downloadpacman-3da06c3519ad8df60ce8c067cdaeddb69a320a53.tar.gz
pacman-3da06c3519ad8df60ce8c067cdaeddb69a320a53.tar.xz
Use versions specified in optdepends
Checking install status and if a package is optionally required on removal now considers the version of the optdepend. Fixes FS#44957. Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm')
-rw-r--r--lib/libalpm/remove.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c
index 22211d91..45f7c2f4 100644
--- a/lib/libalpm/remove.c
+++ b/lib/libalpm/remove.c
@@ -180,7 +180,8 @@ static void remove_notify_needed_optdepends(alpm_handle_t *handle, alpm_list_t *
alpm_list_t *j;
for(j = optdeps; j; j = alpm_list_next(j)) {
alpm_depend_t *optdep = j->data;
- if(alpm_find_satisfier(lp, optdep->name)) {
+ char *optstring = alpm_dep_compute_string(optdep);
+ if(alpm_find_satisfier(lp, optstring)) {
alpm_event_optdep_removal_t event = {
.type = ALPM_EVENT_OPTDEP_REMOVAL,
.pkg = pkg,