diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 031e91729..cef8f833a 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -7,6 +7,7 @@ o allow editing partition label without formatting (bootloader config is not yet updated) o allow setting label on NTFS and reiser4 partitions + o don't suggest mountpoint outside install (#39596) - harddrake: o fix displaying in proper category sound coprocessor & misc ACPI event keys diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 2deb41ae6..1cac2446e 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -440,7 +440,7 @@ sub part_possible_actions { #- in case someone use diskdrake only to create partitions, #- ie without assigning a mount point, #- do not suggest mount points anymore -my $do_suggest_mount_point = 1; +my $do_suggest_mount_point = $::isInstall; sub Create { my ($in, $hd, $part, $all_hds) = @_; |