From 91a28e36396280047d956f7428cfedc31d72057c Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Tue, 17 Nov 2009 23:41:05 +0000 Subject: diskdrake: don't request ntfs-3g on target not yet installed system if we are run inside draklive-install (#55160) --- perl-install/NEWS | 2 ++ perl-install/diskdrake/interactive.pm | 1 + 2 files changed, 3 insertions(+) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index f34531f99..2e07e2c80 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -11,6 +11,8 @@ - fix detecting hidden partitions as recovery - diskdrake: o allow to convert ext2/3 to ext4 but do not enable flags + o don't request ntfs-3g on target not yet installed system if we are + run inside draklive-install (#55160) Version 12.77 - 30 October 2009 diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 50a7674d7..453594087 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -609,6 +609,7 @@ sub Type { return; } elsif ($type->{fs_type} =~ /ntfs/ && $part->{fs_type} =~ /ntfs/) { if ($type->{fs_type} eq 'ntfs-3g') { + local $::prefix = ''; # For draklive-install $in->do_pkgs->ensure_binary_is_installed('ntfs-3g', 'mount.ntfs-3g') or return; } put_in_hash($part, $type); -- cgit v1.2.1