diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-12-01 10:32:29 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-12-01 10:32:29 +0100 |
commit | 08dca1593f82dfa4b5f1199b5b1f4d7099719be9 (patch) | |
tree | b1b383f93524ebfcb5bfcc98924668f29dc88ba3 /lib/libalpm/remove.c | |
parent | 6c68723905ba1d8cee83e4af88b0ac8ee9a408aa (diff) | |
download | pacman-08dca1593f82dfa4b5f1199b5b1f4d7099719be9.tar.gz pacman-08dca1593f82dfa4b5f1199b5b1f4d7099719be9.tar.xz |
* Cosmetic changes and typo fixes
* IgnorePkg and --ignore work again
* Partial changes to support removal of conflicts for -U and -A (INCOMPLETE)
Diffstat (limited to 'lib/libalpm/remove.c')
-rw-r--r-- | lib/libalpm/remove.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 6fce2d35..84c5da2f 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -71,7 +71,8 @@ int _alpm_remove_loadtarget(pmtrans_t *trans, pmdb_t *db, char *name) } if((info = _alpm_db_scan(db, name, INFRQ_ALL)) == NULL) { - _alpm_log(PM_LOG_ERROR, _("could not find %s in database"), name); + /* Unimportant - just ignore it if we can't find it */ + _alpm_log(PM_LOG_DEBUG, _("could not find %s in database"), name); RET_ERR(PM_ERR_PKG_NOT_FOUND, -1); } |