summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarolina Lindqvist <karolina.lindqvist@kramnet.se>2007-12-29 19:42:45 +0100
committerDan McGee <dan@archlinux.org>2007-12-29 19:42:45 +0100
commitdffa0654f2eae1c427a74c647d22f0bbd201ccf7 (patch)
treeb4b382ce2db645c551f3ba2a9deef88102e576c8
parentfbd88a8212e794899e75ecf44024777c5a58deb2 (diff)
downloadpacman-dffa0654f2eae1c427a74c647d22f0bbd201ccf7.tar.gz
pacman-dffa0654f2eae1c427a74c647d22f0bbd201ccf7.tar.xz
Fix case where pacman asks for confirmation when it should not
There is another case where pacman-git asks for confirmation, when it should not. It is when removing packages. If running with makeworld --noconfirm --rmdeps the question will come to the log file, and never appear on the console, so you can wait forever wondering what is happening. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--src/pacman/remove.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pacman/remove.c b/src/pacman/remove.c
index 56837fa2..fde5c737 100644
--- a/src/pacman/remove.c
+++ b/src/pacman/remove.c
@@ -155,7 +155,8 @@ int pacman_remove(alpm_list_t *targets)
list_display(_("Targets:"), lst);
FREELIST(lst);
/* get confirmation */
- if(yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) {
+ if(!config->noconfirm
+ && yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) {
remove_cleanup();
FREELIST(finaltargs);
return(1);