summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2026-01-19 17:46:47 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2026-01-19 17:52:11 +0100
commit1edd5f6c562202026ba1c91ac18941acbac9abf3 (patch)
tree06860f66277f1fb658f4ab974609ba39cd0ecc4f /perl-install/install
parent17b8ec62c1ec6006e52b0303273e392941dad834 (diff)
downloaddrakx-1edd5f6c562202026ba1c91ac18941acbac9abf3.tar
drakx-1edd5f6c562202026ba1c91ac18941acbac9abf3.tar.gz
drakx-1edd5f6c562202026ba1c91ac18941acbac9abf3.tar.bz2
drakx-1edd5f6c562202026ba1c91ac18941acbac9abf3.tar.xz
drakx-1edd5f6c562202026ba1c91ac18941acbac9abf3.zip
perl_checker cleanups
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/install2.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 26f8cd78b..8a127ab68 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- fix partitioning wizard
+
Version 18.72 - 18 January 2026
- add mesa EGL and GL libraries needed by WebKit2 (mga#34988)
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 5d7c21f27..d253cc1c6 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -199,7 +199,7 @@ sub selectTimezone {
#- Read the existing settings. But we will still ask the user, in case
#- they are wrong.
my $root_part = fs::get::mntpoint2part('/', $o->{fstab});
- if ($root_part && eval{ fs::mount::mount(fs::wild_device::from_part('', $root_part), $::prefix, $root_part->{fs_type}, 'ro') }) {
+ if ($root_part && eval { fs::mount::mount(fs::wild_device::from_part('', $root_part), $::prefix, $root_part->{fs_type}, 'ro') }) {
if (my $tz = timezone::read()) {
add2hash($o->{timezone}, $tz);
$o->{timezone}{ntp} = timezone::ntp_pool();