index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | lib/libalpm/remove.c | 4 |
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 5659e1e9..6fce2d35 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -319,8 +319,8 @@ int _alpm_remove_commit(pmtrans_t *trans, pmdb_t *db) FREELISTPTR(provides); } if(depinfo == NULL) { - _alpm_log(PM_LOG_ERROR, _("could not find dependency '%s'"), depend.name); - /* wtf */ + /* dep not installed... that's fine, carry on */ + _alpm_log(PM_LOG_DEBUG, _("could not find dependency '%s' for removal"), depend.name); continue; } } |