diff options
author | Dan McGee <dan@archlinux.org> | 2008-01-13 19:27:17 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-13 19:27:17 +0100 |
commit | 521de7ceedc6e4f5df52c0380f536a6f13a7f578 (patch) | |
tree | 1b6d86158a19b3156c23cb81ee90f291ca85f9b3 /lib/libalpm/remove.c | |
parent | 4f267017936471c8248a85f8d86aabb96e66c7e8 (diff) | |
parent | bbe02ec57fd56670dfe0bc08d981ce8a1aa31370 (diff) | |
download | pacman-521de7ceedc6e4f5df52c0380f536a6f13a7f578.tar.gz pacman-521de7ceedc6e4f5df52c0380f536a6f13a7f578.tar.xz |
Merge branch 'maint'
Diffstat (limited to 'lib/libalpm/remove.c')
-rw-r--r-- | lib/libalpm/remove.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 086ed733..10a055bb 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -147,7 +147,9 @@ int _alpm_remove_prepare(pmtrans_t *trans, pmdb_t *db, alpm_list_t **data) _alpm_recursedeps(db, trans->packages, 0); } - EVENT(trans, PM_TRANS_EVT_CHECKDEPS_DONE, NULL, NULL); + if(!(trans->flags & PM_TRANS_FLAG_NODEPS)) { + EVENT(trans, PM_TRANS_EVT_CHECKDEPS_DONE, NULL, NULL); + } return(0); } |