From 8cb21146557a468e517db3123d481e5715971c7a Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 6 Nov 2002 22:52:57 +0000 Subject: - have "local *FILEHANDLE" before each "open FILEHANDLE, ..." - use some "cat_" and "output" where possible --- perl-install/install_any.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'perl-install/install_any.pm') diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 312785491..b3b4b70af 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; + local *F; open F, $f2 and *F; } } || errorOpeningFile($f); } @@ -586,8 +586,8 @@ sub install_urpmi { foreach (sort { $a->{medium} <=> $b->{medium} } values %$mediums) { my $name = $_->{fakemedium}; if ($_->{ignored} || $_->{selected}) { - local *LIST; my $mask = umask 077; + local *LIST; open LIST, ">$prefix/var/lib/urpmi/list.$name" or log::l("failed to write list.$name"); umask $mask; @@ -608,9 +608,9 @@ sub install_urpmi { } } else { #- need to use another method here to build synthesis. - local (*F, $_); - open F, "parsehdlist '$prefix/var/lib/urpmi/hdlist.$name.cz' |"; - while ($_ = ) { + local *F; open F, "parsehdlist '$prefix/var/lib/urpmi/hdlist.$name.cz' |"; + local $_; + while () { print LIST "$dir/$_"; } close F; -- cgit v1.2.1