diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-25 17:53:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-25 17:53:28 +0000 |
commit | a40bceec1a004b6cc56da740518582138b6c7c96 (patch) | |
tree | 2743d6ccc50f0618d140c761abd2247aba6cde76 /perl-install | |
parent | 394d645aaece3fc31e5b9db66b5757c343f056d2 (diff) | |
download | drakx-a40bceec1a004b6cc56da740518582138b6c7c96.tar drakx-a40bceec1a004b6cc56da740518582138b6c7c96.tar.gz drakx-a40bceec1a004b6cc56da740518582138b6c7c96.tar.bz2 drakx-a40bceec1a004b6cc56da740518582138b6c7c96.tar.xz drakx-a40bceec1a004b6cc56da740518582138b6c7c96.zip |
use a scalar instead of a typeglob (let typeglobs be deprecated!)
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 a79a691cf..ec9ef9ad6 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; - open GETFILE, $f2 and *GETFILE; + my $F; open $F, $f2 and $F; } } || errorOpeningFile($f); } |