diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-06 16:33:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-06 16:33:20 +0000 |
commit | 3dfc204023a7a25db6345c11c7ff6c2c77638007 (patch) | |
tree | f556f6daa3a2c50e7c27d266a6bce6d977053f95 /perl-install/install_any.pm | |
parent | 5c3f880e202d0b2d4c3b03236a38c35192653f91 (diff) | |
download | drakx-3dfc204023a7a25db6345c11c7ff6c2c77638007.tar drakx-3dfc204023a7a25db6345c11c7ff6c2c77638007.tar.gz drakx-3dfc204023a7a25db6345c11c7ff6c2c77638007.tar.bz2 drakx-3dfc204023a7a25db6345c11c7ff6c2c77638007.tar.xz drakx-3dfc204023a7a25db6345c11c7ff6c2c77638007.zip |
perl_checker compliance
Diffstat (limited to 'perl-install/install_any.pm')
-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 28810502b..cbffc10d9 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -131,7 +131,7 @@ sub getFile { #- to other to avoid media change... my $f2 = "$postinstall_rpms/$f"; $f2 = "/tmp/image/$rel" if !$postinstall_rpms || !-e $f2; - my $F; open $F, $f2 and $F; + my $F; open($F, $f2) && $F; } } || errorOpeningFile($f); } |