diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-26 02:47:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-26 02:47:34 +0000 |
commit | 9c29b12f0d1ea1a7d88d41d24c72a85cbc1b8862 (patch) | |
tree | 34d017b8f2e2e6d5b519cd94bb7de695ae110103 /perl-install/fs/format.pm | |
parent | 30d91c3e71986c50b29dd782532e6c064a168bd3 (diff) | |
download | drakx-9c29b12f0d1ea1a7d88d41d24c72a85cbc1b8862.tar drakx-9c29b12f0d1ea1a7d88d41d24c72a85cbc1b8862.tar.gz drakx-9c29b12f0d1ea1a7d88d41d24c72a85cbc1b8862.tar.bz2 drakx-9c29b12f0d1ea1a7d88d41d24c72a85cbc1b8862.tar.xz drakx-9c29b12f0d1ea1a7d88d41d24c72a85cbc1b8862.zip |
fix typo
Diffstat (limited to 'perl-install/fs/format.pm')
-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 ee72eadcb..a3a33f0c4 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -60,7 +60,7 @@ sub part_raw { my $cmd = $cmds{$fs_type} or die N("I don't know how to format %s in type %s", $part->{device}, part2name($part)); - run_program::raw({ timeout => 60 * 60 }, $cmd, @options, devices::make($dev)) or die N("%s formatting of %s failed", $fs_type, $dev); + run_program::raw({ timeout => 60 * 60 }, split(' ', $cmd), @options, devices::make($dev)) or die N("%s formatting of %s failed", $fs_type, $dev); if ($fs_type eq 'ext3') { disable_forced_fsck($dev); |