diff options
author | Francois Pons <fpons@mandriva.com> | 2002-11-25 15:05:28 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-11-25 15:05:28 +0000 |
commit | b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88 (patch) | |
tree | 411b25d8b6c8bdb708375e7d32f9441fdebc2f1f /perl-install | |
parent | 7d56fa27e47bc2cdccb19481035a5478e26247e0 (diff) | |
download | drakx-backup-do-not-use-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar drakx-backup-do-not-use-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar.gz drakx-backup-do-not-use-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar.bz2 drakx-backup-do-not-use-b6a01c4caac3b483cb8fe94b301fd6ddb37c1a88.tar.xz drakx-backup-do-not-use-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')
-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 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); } |