summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2002-09-19 12:36:54 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2002-09-19 12:36:54 +0000
commit3561d72c93b6d704d4df6248ca93db1bd4bb8188 (patch)
treec70fd42f0c2225cca32c7add14aa0c166e0e14b8
parentf9ed643497904ff85d21828064d9fea115deeb0e (diff)
downloaddrakx-backup-do-not-use-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar
drakx-backup-do-not-use-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar.gz
drakx-backup-do-not-use-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar.bz2
drakx-backup-do-not-use-3561d72c93b6d704d4df6248ca93db1bd4bb8188.tar.xz
drakx-backup-do-not-use-3561d72c93b6d704d4df6248ca93db1bd4bb8188.zip
require log will reliably fail, use require 'log.pm' instead
-rw-r--r--perl-install/interactive.pm2
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());
};
}