diff options
author | Francois Pons <fpons@mandriva.com> | 2001-12-05 18:54:38 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-12-05 18:54:38 +0000 |
commit | ab071d4d09253a8763fffeddcc24be13d0698da6 (patch) | |
tree | 57cbf45694ea157681fda2e1d3a8c45cf59ee470 /urpmi.update | |
parent | 3c879e7831ab56a1208e40996dbe49c3aa397df2 (diff) | |
download | urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar.gz urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar.bz2 urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar.xz urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.zip |
2.2 with rpmtools 4.0.
Diffstat (limited to 'urpmi.update')
-rwxr-xr-x | urpmi.update | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/urpmi.update b/urpmi.update index 1deb4327..26514f7c 100755 --- a/urpmi.update +++ b/urpmi.update @@ -33,18 +33,19 @@ sub main { foreach (@_) { /^--?a/ and $options{all} = 1, next; /^--?c/ and $options{noclean} = 0, next; - /^--?c/ and $options{depslist} = 1, next; + /^--?d/ and $options{depslist} = 1, next; /^--?f/ and ++$options{force}, next; /^--wget/ and $options{sync} = \&urpm::sync_wget, next; /^--curl/ and $options{sync} = \&urpm::sync_curl, next; /^--?noa/ and next; #- default, keeped for compability. /^-/ and die _("usage: urpmi.update [options] <name> ... where <name> is a medium name to update. -") . _(" -a - select all non-removable media. -") . _(" -c - clean headers cache directory. -") . _(" -f - force generation of hdlist files. -") . _(" --wget - use wget to retrieve distant files. -") . _(" --curl - use curl to retrieve distant files. +") . _(" -a - select all non-removable media. +") . _(" -c - clean headers cache directory. +") . _(" -d - force complete computation of depslist.ordered file. +") . _(" -f - force generation of hdlist files. +") . _(" --wget - use wget to retrieve distant files. +") . _(" --curl - use curl to retrieve distant files. ") . _("\nunknown options '%s'\n", $_); push @toupdates, $_; } |