diff options
author | Adam Lebsack <adam@mandriva.com> | 2000-02-13 10:15:53 +0000 |
---|---|---|
committer | Adam Lebsack <adam@mandriva.com> | 2000-02-13 10:15:53 +0000 |
commit | c779809ce84427ea04fd9baaa9c24d12cc437d4c (patch) | |
tree | 4996297a2df42e623f5e3fd7f3c7f5c01eae6939 /perl-install/install_any.pm | |
parent | 5e1da5f64206b56ac0c14122bc3c4dbbf524fb66 (diff) | |
download | drakx-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar drakx-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar.gz drakx-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar.bz2 drakx-c779809ce84427ea04fd9baaa9c24d12cc437d4c.tar.xz drakx-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/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
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/; $_; |