summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2002-08-26 09:30:35 +0000
committerFlorent Villard <warly@mandriva.com>2002-08-26 09:30:35 +0000
commit177e317f4a5a57ca27b13cea579704edd1f62e28 (patch)
tree8ec165da8a967cdbe21dd441ce58dd59c149ad02 /urpm.pm
parentbe19074449fca20fab3e909963bf9cfacf68d5ac (diff)
downloadurpmi-177e317f4a5a57ca27b13cea579704edd1f62e28.tar
urpmi-177e317f4a5a57ca27b13cea579704edd1f62e28.tar.gz
urpmi-177e317f4a5a57ca27b13cea579704edd1f62e28.tar.bz2
urpmi-177e317f4a5a57ca27b13cea579704edd1f62e28.tar.xz
urpmi-177e317f4a5a57ca27b13cea579704edd1f62e28.zip
remove ´/´ in install call in urpme
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/urpm.pm b/urpm.pm
index 67fc1a7a..2ce9d9d1 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -1445,6 +1445,7 @@ sub reduce_pathname {
#- remove any multiple /s or trailing /.
#- then split all components of pathname.
$dir =~ s/\/+/\//g; $dir =~ s/\/$//;
+ $dir =~ s/([^:]+:\/)?\/+/$1\//g; $dir =~ s/\/$//;
my @paths = split '/', $dir;
#- reset $dir, recompose it, and clean trailing / added by algorithm.