From a40bceec1a004b6cc56da740518582138b6c7c96 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 25 Nov 2002 17:53:28 +0000 Subject: use a scalar instead of a typeglob (let typeglobs be deprecated!) --- perl-install/install_any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.2.1