summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-11-25 15:05:28 +0000
committerFrancois Pons <fpons@mandriva.com>2002-11-25 15:05:28 +0000
commitb6a01c4caac3b483cb8fe94b301fd6ddb37c1a88 (patch)
tree411b25d8b6c8bdb708375e7d32f9441fdebc2f1f /perl-install/install_any.pm
parent7d56fa27e47bc2cdccb19481035a5478e26247e0 (diff)
downloaddrakx-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar
drakx-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar.gz
drakx-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar.bz2
drakx-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar.xz
drakx-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.zip
fixes perl-checker importation of bug, getFile is complex for perl newbies, do
not rely on perl-checker for trying to "fix" it else it won't run anymore ;-)
Diffstat (limited to 'perl-install/install_any.pm')
-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 ac79f3f2d..a79a691cf 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -127,7 +127,7 @@ sub getFile {
#- to other to avoid media change...
my $f2 = "$postinstall_rpms/$f";
$f2 = "/tmp/image/$rel" if !$postinstall_rpms || !-e $f2;
- local *GETFILE; open GETFILE, $f2 and return *GETFILE;
+ open GETFILE, $f2 and *GETFILE;
}
} || errorOpeningFile($f);
}