diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-09-19 12:36:54 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-09-19 12:36:54 +0000 |
commit | 3561d72c93b6d704d4df6248ca93db1bd4bb8188 (patch) | |
tree | c70fd42f0c2225cca32c7add14aa0c166e0e14b8 /perl-install | |
parent | f9ed643497904ff85d21828064d9fea115deeb0e (diff) | |
download | drakx-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar drakx-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar.gz drakx-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar.bz2 drakx-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar.xz drakx-3561d72c93b6d704d4df6248ca93db1bd4bb8188.zip |
require log will reliably fail, use require 'log.pm' instead
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 8731be5f9..bc7f5cdb6 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -304,7 +304,7 @@ sub ask_from_normalize { if ($_->{list} && $_->{not_edit} && !$_->{allow_empty_list}) { if (@{$_->{list}} == ()) { eval { - require log; + require 'log.pm'; log::l("ask_from_normalize: empty list for $_->{label}\n" . common::backtrace()); }; } |