diff options
-rw-r--r-- | gurpmi.pm | 2 | ||||
-rw-r--r-- | urpme | 2 | ||||
-rwxr-xr-x | urpmf | 2 | ||||
-rwxr-xr-x | urpmi | 2 | ||||
-rwxr-xr-x | urpmi.addmedia | 2 | ||||
-rwxr-xr-x | urpmi.removemedia | 5 | ||||
-rwxr-xr-x | urpmi.update | 2 | ||||
-rwxr-xr-x | urpmq | 2 |
8 files changed, 11 insertions, 8 deletions
@@ -21,7 +21,7 @@ our @ISA = qw(Exporter); our @EXPORT = qw(fatal but quit add_button_box new_label N); sub usage () { - print STDERR <<USAGE; + print <<USAGE; gurpmi version $urpm::VERSION Usage : gurpmi <rpm> [ <rpm>... ] @@ -33,7 +33,7 @@ my $noexpr = N("Nn"); my $yesexpr = N("Yy"); sub usage { - print STDERR N("urpme version %s + print N("urpme version %s Copyright (C) 1999-2005 Mandrakesoft. This is free software and may be redistributed under the terms of the GNU GPL. @@ -24,7 +24,7 @@ use urpm::args; use urpm::msg; sub usage { - print STDERR N("urpmf version %s + print N("urpmf version %s Copyright (C) 2002-2004 Mandrakesoft. This is free software and may be redistributed under the terms of the GNU GPL. @@ -68,7 +68,7 @@ $ENV{HOME} ||= "/root"; $ENV{USER} ||= "root"; sub usage { - print STDERR N("urpmi version %s + print N("urpmi version %s Copyright (C) 1999-2005 Mandrakesoft. This is free software and may be redistributed under the terms of the GNU GPL. diff --git a/urpmi.addmedia b/urpmi.addmedia index 41ffc424..4574ae81 100755 --- a/urpmi.addmedia +++ b/urpmi.addmedia @@ -78,7 +78,7 @@ and [options] are from ") . N(" -q - quiet mode. ") . N(" -v - verbose mode. "); - warn $m ? "$usage\n$m" : $usage; + print $m ? "$usage\n$m" : $usage; exit 0; } diff --git a/urpmi.removemedia b/urpmi.removemedia index 601b60b4..5db1f006 100755 --- a/urpmi.removemedia +++ b/urpmi.removemedia @@ -39,7 +39,8 @@ sub main { /^--?y$/ and $options{strict_match} = 0, next; /^--?v$/ and $options{verbose} = 1, next; /^--?q$/ and $options{verbose} = 0, next; - /^-/ and die N("usage: urpmi.removemedia [-a] <name> ... + /^-/ and do { + print N("usage: urpmi.removemedia [-a] <name> ... where <name> is a medium name to remove. ") . N(" --help - print this help message. ") . N(" -a - select all media. @@ -48,6 +49,8 @@ where <name> is a medium name to remove. ") . N(" -q - quiet mode. ") . N(" -v - verbose mode. ") . (/^--?h(?:elp)$/ ? '' : N("\nunknown options '%s'\n", $_)); + exit 0; + }; } push @toremoves, $_; } diff --git a/urpmi.update b/urpmi.update index 1ed9eea8..2ae26ec5 100755 --- a/urpmi.update +++ b/urpmi.update @@ -25,7 +25,7 @@ use urpm::msg; use urpm::download (); sub usage { - warn N("usage: urpmi.update [options] <name> ... + print N("usage: urpmi.update [options] <name> ... where <name> is a medium name to update. ") . N(" --help - print this help message. ") . N(" --wget - use wget to retrieve distant files. @@ -35,7 +35,7 @@ our @names; our @src_names; sub usage { - print STDERR N("urpmq version %s + print N("urpmq version %s Copyright (C) 2000-2005 Mandrakesoft. This is free software and may be redistributed under the terms of the GNU GPL. |