diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-09 21:05:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-09 21:05:34 +0000 |
commit | f0f366d517c87f347f889394416ea21289eec83f (patch) | |
tree | 6960d14189bc35bf920f037fe2d43433f945fdf3 /perl-install/install_any.pm | |
parent | da93dce60a01e338efbea41e3e2134d9c1e03fe2 (diff) | |
download | drakx-backup-do-not-use-f0f366d517c87f347f889394416ea21289eec83f.tar drakx-backup-do-not-use-f0f366d517c87f347f889394416ea21289eec83f.tar.gz drakx-backup-do-not-use-f0f366d517c87f347f889394416ea21289eec83f.tar.bz2 drakx-backup-do-not-use-f0f366d517c87f347f889394416ea21289eec83f.tar.xz drakx-backup-do-not-use-f0f366d517c87f347f889394416ea21289eec83f.zip |
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 1d4c324a2..b84cd3c4b 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -36,8 +36,8 @@ sub relGetFile($) { local $_ = $_[0]; /\.img$/ and return "images/$_"; my $dir = m|/| ? "mdkinst" : - member($_, qw(compss compssList compssUsers depslist hdlist)) ? "base" : "RPMS"; - $_ = "Mandrake/$dir/$_"; + member($_, qw(compss compssList compssUsers depslist hdlist)) ? "/base" : "/RPMS"; + $_ = "Mandrake/$dir$_"; s/i386/i586/; $_; } |