summaryrefslogtreecommitdiffstats
path: root/urpmi.addmedia
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-12-05 18:54:38 +0000
committerFrancois Pons <fpons@mandriva.com>2001-12-05 18:54:38 +0000
commitab071d4d09253a8763fffeddcc24be13d0698da6 (patch)
tree57cbf45694ea157681fda2e1d3a8c45cf59ee470 /urpmi.addmedia
parent3c879e7831ab56a1208e40996dbe49c3aa397df2 (diff)
downloadurpmi-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.addmedia')
-rwxr-xr-xurpmi.addmedia11
1 files changed, 6 insertions, 5 deletions
diff --git a/urpmi.addmedia b/urpmi.addmedia
index f1cc9014..eefdae3c 100755
--- a/urpmi.addmedia
+++ b/urpmi.addmedia
@@ -35,10 +35,11 @@ where <url> is one of
removable://<path>
and [options] are from
-") . _(" -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.
+") . _(" -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.
");
$options{force} = 0;
@@ -46,7 +47,7 @@ and [options] are from
$options{sync} = undef;
while ($_ = shift @_) {
/^--?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;