summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-04-30 13:26:30 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-04-30 13:26:30 +0000
commitcc17bac7ba323b6a02c944d7489b01e0e0e64904 (patch)
treebe15004241872518073b16d53cd69dbbdd434f29 /perl-install
parent13a87b3b20ad0115a90f3751d9bcd8835f261064 (diff)
downloaddrakx-cc17bac7ba323b6a02c944d7489b01e0e0e64904.tar
drakx-cc17bac7ba323b6a02c944d7489b01e0e0e64904.tar.gz
drakx-cc17bac7ba323b6a02c944d7489b01e0e0e64904.tar.bz2
drakx-cc17bac7ba323b6a02c944d7489b01e0e0e64904.tar.xz
drakx-cc17bac7ba323b6a02c944d7489b01e0e0e64904.zip
perl_checker fix
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/service_harddrake2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index 99b2f2e6b..9b960de5c 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -47,7 +47,7 @@ foreach (@harddrake::data::tree) {
my @was_removed = difference2([ keys %$oldconfig ], [ keys %ID ]);
if (@was_removed) {
$msg .= N("Some devices in the \"%s\" hardware class were removed:\n", $item) .
- "- " . harddrake::data::custom_id($oldconfig->{$_}, $item) . " was removed\n" foreach @was_removed . "\n";
+ "- " . join('', map { harddrake::data::custom_id($oldconfig->{$_}, $item) . " was removed\n" } @was_removed) . "\n";
}
my @added = difference2([ keys %ID ], [ keys %$oldconfig ]);
$msg .= N("Some devices were added:\n", $item) if @added;