Dont log dep warns

* Dont warn us about an package/dep if its removed/installed before another cycled dep
This commit is contained in:
Martin Valba 2024-09-28 22:09:45 +03:00
parent 23ffe1cbba
commit ed71d2cf8d

View File

@ -181,15 +181,6 @@ static void _alpm_warn_dep_cycle(alpm_handle_t *handle, alpm_list_t *targets,
} else {
alpm_pkg_t *ancestorpkg = ancestor->data;
alpm_pkg_t *childpkg = vertex->data;
if(reverse) {
_alpm_log(handle, ALPM_LOG_WARNING,
_("%s will be removed after its %s dependency\n"),
ancestorpkg->name, childpkg->name);
} else {
_alpm_log(handle, ALPM_LOG_WARNING,
_("%s will be installed before its %s dependency\n"),
ancestorpkg->name, childpkg->name);
}
}
}