summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index c919c574c..b8f33b7ed 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -585,7 +585,7 @@ sub mount {
syscall_('mount', $dev, $where, $fs, $flag, $mount_opt) or die _("mount failed: ") . "$!";
syscall_('umount', $where);
# really mount as ext2 during install for speed up
- $type = 'ext2';
+ $fs = 'ext2';
}
log::l("calling mount($dev, $where, $fs, $flag, $mount_opt)");
syscall_('mount', $dev, $where, $fs, $flag, $mount_opt) or die _("mount failed: ") . "$!";