diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-12 14:05:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-12 14:05:52 +0000 |
commit | fc6a72175bf8ee7aed801e4003991e8e9c67c304 (patch) | |
tree | 7f435f15fbc29d6869ddd1db9cd95ef33ba77fde /perl-install/modules.pm | |
parent | 7902fe25c4e57756cbae9cce1e6a88c32e04b9f4 (diff) | |
download | drakx-fc6a72175bf8ee7aed801e4003991e8e9c67c304.tar drakx-fc6a72175bf8ee7aed801e4003991e8e9c67c304.tar.gz drakx-fc6a72175bf8ee7aed801e4003991e8e9c67c304.tar.bz2 drakx-fc6a72175bf8ee7aed801e4003991e8e9c67c304.tar.xz drakx-fc6a72175bf8ee7aed801e4003991e8e9c67c304.zip |
add/remove some spaces to make perl_checker happy
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 2dc9a12ad..8416d0190 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -238,9 +238,7 @@ sub write_conf { } elsif ($type eq 'alias' && $alias =~ /scsi_hostadapter|usb-interface/) { #- remove old aliases which are replaced by probeall $_ = ''; - } elsif ( - $conf{$alias}{$type} && - $conf{$alias}{$type} ne $module) { + } elsif ($conf{$alias}{$type} && $conf{$alias}{$type} ne $module) { my $v = join(' ', uniq(deref($conf{$alias}{$type}))); $_ = "$type $alias $v\n"; } |