diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-08-02 11:45:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-08-02 11:45:43 +0000 |
commit | 52ce91e9d3de48823520988e5f14680af67b112d (patch) | |
tree | 2d52d66629eabf43f6366c4b9eeae5a1f6603480 /perl-install | |
parent | 72383353173737bacaab60fd49c04e7940035279 (diff) | |
download | drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar.gz drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar.bz2 drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar.xz drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.zip |
make perl_checker happy
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/format.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index fb948b6b5..ad4eebdd2 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -74,7 +74,7 @@ sub part_raw { push @options, '-l', 'bootstrap'; } - my ($pkg, $cmd, @first_options) = @{$cmds{$fs_type} || die N("I don't know how to format %s in type %s", $part->{device}, $part->{fs_type})}; + my ($_pkg, $cmd, @first_options) = @{$cmds{$fs_type} || die N("I don't know how to format %s in type %s", $part->{device}, $part->{fs_type})}; run_program::raw({ timeout => 60 * 60 }, $cmd, @first_options, @options, devices::make($dev)) or die N("%s formatting of %s failed", $fs_type, $dev); |