From 9918d43ab9595449d8364fc75a6368c8d8cd0034 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Fri, 24 Nov 2006 07:01:27 +0000 Subject: * Fixed some error output for "-Sd" and "-Rsc" dealing with missing/ignored depends * Added valgrind suppression file --- lib/libalpm/deps.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/libalpm/deps.c') diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index 9cab8489..97c527ab 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -441,7 +441,8 @@ pmlist_t *_alpm_removedeps(pmdb_t *db, pmlist_t *targs) /* package not found... look for a provisio instead */ k = _alpm_db_whatprovides(db, depend.name); if(k == NULL) { - _alpm_log(PM_LOG_WARNING, _("cannot find package \"%s\" or anything that provides it!"), depend.name); + /* Not found, that's fine, carry on */ + _alpm_log(PM_LOG_DEBUG, _("cannot find package \"%s\" or anything that provides it!"), depend.name); continue; } dep = _alpm_db_get_pkgfromcache(db, ((pmpkg_t *)k->data)->name); -- cgit v1.2.3-54-g00ecf