diff options
author | damien <damien@mandriva.com> | 2002-03-05 16:09:45 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-03-05 16:09:45 +0000 |
commit | b8a8523caa009611f7a6eb1dbb04907aa6e42fcc (patch) | |
tree | 616f4bb50bc1bdfcac7e581bd59c1ee59d0471eb /perl-install/modparm.pm | |
parent | 0d62382d3c9fd32ffb9375facaafc0c5daa7177e (diff) | |
download | drakx-b8a8523caa009611f7a6eb1dbb04907aa6e42fcc.tar drakx-b8a8523caa009611f7a6eb1dbb04907aa6e42fcc.tar.gz drakx-b8a8523caa009611f7a6eb1dbb04907aa6e42fcc.tar.bz2 drakx-b8a8523caa009611f7a6eb1dbb04907aa6e42fcc.tar.xz drakx-b8a8523caa009611f7a6eb1dbb04907aa6e42fcc.zip |
cosmetic
Diffstat (limited to 'perl-install/modparm.pm')
-rw-r--r-- | perl-install/modparm.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/modparm.pm b/perl-install/modparm.pm index fe8c335b0..700056eff 100644 --- a/perl-install/modparm.pm +++ b/perl-install/modparm.pm @@ -26,7 +26,7 @@ sub get_options_name($) { my @names; $modinfo = $::isStandalone ? '/sbin/modinfo' : '/usr/bin/modinfo'; -e $modinfo or die _('modinfo is not available'); - if($::isStandalone) { + if ($::isStandalone) { my @line = `$modinfo -p $module`; } else { modules::extract_modules('/tmp', $module); @@ -51,7 +51,6 @@ sub get_options_name($) { push @names, $_; } } - print "yop : @names \n"; @names; } |