From 8372a9e8c73ed18da5f027c99c8ac48c2f706b55 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 12 Jan 2008 11:03:50 +1000 Subject: Only notify of dependency check in removal if performed Moves "checking dependencies..." notification into code block where dependency checking is performed to stop spurious notification. Reference: http://archlinux.org/pipermail/pacman-dev/2008-January/010714.html Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- lib/libalpm/remove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 4f6d6473..2f027951 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -97,9 +97,9 @@ int _alpm_remove_prepare(pmtrans_t *trans, pmdb_t *db, alpm_list_t **data) return(0); } - EVENT(trans, PM_TRANS_EVT_CHECKDEPS_START, NULL, NULL); - if(!(trans->flags & PM_TRANS_FLAG_NODEPS)) { + EVENT(trans, PM_TRANS_EVT_CHECKDEPS_START, NULL, NULL); + _alpm_log(PM_LOG_DEBUG, "looking for unsatisfied dependencies\n"); lp = alpm_checkdeps(db, 1, trans->packages, NULL); if(lp != NULL) { -- cgit v1.2.3-24-g4f1b