diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-16 20:21:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-16 20:21:44 +0000 |
commit | 18cd28718078bc9f39ce092580b212484a39cd3c (patch) | |
tree | dde945fee5fde3b4e48a5bf764739651a9ecbbd9 | |
parent | ad5943b886409e3e71b9b00812287717ce63029e (diff) | |
download | drakx-backup-do-not-use-18cd28718078bc9f39ce092580b212484a39cd3c.tar drakx-backup-do-not-use-18cd28718078bc9f39ce092580b212484a39cd3c.tar.gz drakx-backup-do-not-use-18cd28718078bc9f39ce092580b212484a39cd3c.tar.bz2 drakx-backup-do-not-use-18cd28718078bc9f39ce092580b212484a39cd3c.tar.xz drakx-backup-do-not-use-18cd28718078bc9f39ce092580b212484a39cd3c.zip |
(write_conf): better logging
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index af03fb615..a93c79c02 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -590,7 +590,7 @@ sub write_conf { push @l, 'ide-floppy' if detect_devices::ide_zips(); push @l, 'bttv' if grep { $_->{driver} eq 'bttv' } detect_devices::probeall(); my $l = join '|', @l; - log::l("to put in modules @l"); + log::l("to put in modules ", join(", ", @l)); substInFile { $_ = '' if /$l/; |