From 321e4931719f59f3f84fabfe7275adf73f0b0112 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 26 Oct 2009 12:54:46 +0000 Subject: fix setting label on fat --- lib/MDV/Draklive/Utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/MDV/Draklive/Utils.pm b/lib/MDV/Draklive/Utils.pm index 94be289..d1499dd 100644 --- a/lib/MDV/Draklive/Utils.pm +++ b/lib/MDV/Draklive/Utils.pm @@ -66,7 +66,7 @@ sub device_allocate_file { sub device_mkfs { my ($device, $type, $o_label, $o_inode_size) = @_; if ($type eq 'vfat') { - run_('mkfs.vfat', if_(defined $o_label, '-L', $o_label), $device); + run_('mkfs.vfat', if_(defined $o_label, '-n', $o_label), $device); } elsif (member($type, 'ext2', 'ext3', 'ext4')) { run_("mkfs.$type", "-m", 0, if_(defined $o_label, '-L', $o_label), -- cgit v1.2.1