summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/remove.c
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-11-24 08:01:27 +0100
committerAaron Griffin <aaron@archlinux.org>2006-11-24 08:01:27 +0100
commit9918d43ab9595449d8364fc75a6368c8d8cd0034 (patch)
tree4efb147940d16a9b34adca14c9d5c420a8222ddd /lib/libalpm/remove.c
parent12fdce244c49133e9fce9e7356e78570dd1b4a1e (diff)
downloadpacman-9918d43ab9595449d8364fc75a6368c8d8cd0034.tar.gz
pacman-9918d43ab9595449d8364fc75a6368c8d8cd0034.tar.xz
* Fixed some error output for "-Sd" and "-Rsc" dealing with missing/ignored
depends * Added valgrind suppression file
Diffstat (limited to 'lib/libalpm/remove.c')
-rw-r--r--lib/libalpm/remove.c4
1 files changed, 2 insertions, 2 deletions
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;
}
}