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 /src | |
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 'src')
-rw-r--r-- | src/pacman/callback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c index e935c870..90191aaf 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -274,12 +274,12 @@ void cb_trans_conv(pmtransconv_t event, void *data1, void *data2, case PM_TRANS_CONV_INSTALL_IGNOREPKG: if(data2) { /* TODO we take this route based on data2 being not null? WTF */ - snprintf(str, LOG_STR_LEN, _(":: %s requires installing %s from IgnorePkg. Install anyway? [Y/n] "), + snprintf(str, LOG_STR_LEN, _(":: %s requires installing %s from IgnorePkg/IgnoreGroup. Install anyway? [Y/n] "), alpm_pkg_get_name(data1), alpm_pkg_get_name(data2)); *response = yesno(str); } else { - snprintf(str, LOG_STR_LEN, _(":: %s is in IgnorePkg. Install anyway? [Y/n] "), + snprintf(str, LOG_STR_LEN, _(":: %s is in IgnorePkg/IgnoreGroup. Install anyway? [Y/n] "), alpm_pkg_get_name(data1)); *response = yesno(str); } |