summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorAdam Lebsack <adam@mandriva.com>2000-02-13 10:15:53 +0000
committerAdam Lebsack <adam@mandriva.com>2000-02-13 10:15:53 +0000
commitc779809ce84427ea04fd9baaa9c24d12cc437d4c (patch)
tree4996297a2df42e623f5e3fd7f3c7f5c01eae6939 /perl-install
parent5e1da5f64206b56ac0c14122bc3c4dbbf524fb66 (diff)
downloaddrakx-backup-do-not-use-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar
drakx-backup-do-not-use-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar.gz
drakx-backup-do-not-use-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar.bz2
drakx-backup-do-not-use-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar.xz
drakx-backup-do-not-use-c779809ce84427ea04fd9baaa9c24d12cc437d4c.zip
Fixed a bug in install_any.pm in relGetFile. I changed /base and /RPMS to
base/ and RPMS/. I guess the author was going for this, but overlooked it.
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index b84cd3c4b..027ba0b64 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -36,7 +36,7 @@ sub relGetFile($) {
local $_ = $_[0];
/\.img$/ and return "images/$_";
my $dir = m|/| ? "mdkinst" :
- member($_, qw(compss compssList compssUsers depslist hdlist)) ? "/base" : "/RPMS";
+ member($_, qw(compss compssList compssUsers depslist hdlist)) ? "base/" : "/RPMS/";
$_ = "Mandrake/$dir$_";
s/i386/i586/;
$_;