diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-03-14 09:25:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-03-14 09:25:40 +0000 |
commit | e2cbffc6422fc59ee624c2c399e79109c21c7cc4 (patch) | |
tree | 8bc16a2c6a23da765f7bd7ca08b5ad5dc676b6c5 /perl-install/install_any.pm | |
parent | 9266168309a593e84c47cc59edb2a6ccd49e4686 (diff) | |
download | drakx-e2cbffc6422fc59ee624c2c399e79109c21c7cc4.tar drakx-e2cbffc6422fc59ee624c2c399e79109c21c7cc4.tar.gz drakx-e2cbffc6422fc59ee624c2c399e79109c21c7cc4.tar.bz2 drakx-e2cbffc6422fc59ee624c2c399e79109c21c7cc4.tar.xz drakx-e2cbffc6422fc59ee624c2c399e79109c21c7cc4.zip |
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 1b908e062..f4840f637 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -82,7 +82,7 @@ sub errorOpeningFile($) { return; } -sub getFile($) { +sub getFile { local $^W = 0; if ($::o->{method} && $::o->{method} eq "ftp") { require ftp; @@ -91,7 +91,7 @@ sub getFile($) { require http; *install_any::getFile = sub { http::getFile($_[0]) or errorOpeningFile($_[0]) }; } else { - *install_any::getFile = sub($) { + *install_any::getFile = sub { open getFile, "/tmp/rhimage/" . relGetFile($_[0]) or return errorOpeningFile($_[0]); *getFile; }; |