diff options
author | Francois Pons <fpons@mandriva.com> | 2003-09-22 09:41:53 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-09-22 09:41:53 +0000 |
commit | 00ccc754f3f1be9b0d730972c0dc98f452fd850f (patch) | |
tree | fdce72ed84d37f6b6595a32a0ec2277ce5669fa7 /urpme | |
parent | b494347550ac56e61a595c152143fbb8f383dacb (diff) | |
download | urpmi-00ccc754f3f1be9b0d730972c0dc98f452fd850f.tar urpmi-00ccc754f3f1be9b0d730972c0dc98f452fd850f.tar.gz urpmi-00ccc754f3f1be9b0d730972c0dc98f452fd850f.tar.bz2 urpmi-00ccc754f3f1be9b0d730972c0dc98f452fd850f.tar.xz urpmi-00ccc754f3f1be9b0d730972c0dc98f452fd850f.zip |
make remove with N by default.
Diffstat (limited to 'urpme')
-rw-r--r-- | urpme | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -109,7 +109,7 @@ if ($test && $auto) { } my $msg = N("To satisfy dependencies, the following packages will be removed (%d MB)", toMb($sum)); print STDOUT "$msg:\n$list\n"; - message_input("$askok" . N(" (Y/n) "), $force && $yesexpr, boolean => 1) =~ /[$noexpr]/ and exit 0; + message_input("$askok" . N(" (y/N) "), $force && $yesexpr, boolean => 1) =~ /[$yesexpr]/ or exit 0; } print STDOUT "\n".N("removing %s", join(' ', sort @toremove))."\n"; |