diff options
author | Nathan Jones <nathanj@insightbb.com> | 2007-11-09 20:13:29 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-11 09:44:30 -0600 |
commit | 3312de65e642a7b6f2d853ce870910bddddf559d (patch) | |
tree | 0234d6c24de2a6ead032938c4cddec17e2a131eb /lib/libalpm/deps.c | |
parent | 5c58b3d500d0971747af9a0c978ff6cfac668882 (diff) | |
download | pacman-3312de65e642a7b6f2d853ce870910bddddf559d.tar.xz |
Implement IgnoreGroup.
This option acts as if IgnorePkg was set on each package in the group.
This closes FS#1592.
Signed-off-by: Nathan Jones <nathanj@insightbb.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/deps.c')
-rw-r--r-- | lib/libalpm/deps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index d8cb0d67..cefffe50 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -730,7 +730,7 @@ int _alpm_resolvedeps(pmdb_t *local, alpm_list_t *dbs_sync, pmpkg_t *syncpkg, * something we're not supposed to. */ int usedep = 1; - if(alpm_list_find_str(handle->ignorepkg, alpm_pkg_get_name(sync))) { + if(_alpm_pkg_should_ignore(sync)) { pmpkg_t *dummypkg = _alpm_pkg_new(miss->target, NULL); QUESTION(trans, PM_TRANS_CONV_INSTALL_IGNOREPKG, dummypkg, sync, NULL, &usedep); _alpm_pkg_free(dummypkg); |