summaryrefslogtreecommitdiffstats
path: root/urpm/args.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-01-18 09:46:07 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-01-18 09:46:07 +0000
commit4be1dc56b5b2e5367459bc97ef10e6a529e28927 (patch)
tree4a4036378109cfade2904bc1f1c5867ffe99b6c2 /urpm/args.pm
parent435d92f61744e346fe549006f39aef606333c7e7 (diff)
downloadurpmi-4be1dc56b5b2e5367459bc97ef10e6a529e28927.tar
urpmi-4be1dc56b5b2e5367459bc97ef10e6a529e28927.tar.gz
urpmi-4be1dc56b5b2e5367459bc97ef10e6a529e28927.tar.bz2
urpmi-4be1dc56b5b2e5367459bc97ef10e6a529e28927.tar.xz
urpmi-4be1dc56b5b2e5367459bc97ef10e6a529e28927.zip
- urpmf:
o add special code for --files simple case, it makes urpmf 3x faster for this often used case
Diffstat (limited to 'urpm/args.pm')
-rw-r--r--urpm/args.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/urpm/args.pm b/urpm/args.pm
index 42422de8..14cfe887 100644
--- a/urpm/args.pm
+++ b/urpm/args.pm
@@ -213,6 +213,7 @@ my %options_spec = (
if ($::literal) {
$p = quotemeta $p;
} else {
+ push @::raw_non_literals, $p;
# quote "+" chars for packages with + in their names
$p =~ s/\+/\\+/g;
}