summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/Makefile.config2
-rw-r--r--perl-install/install/NEWS3
-rwxr-xr-xperl-install/install/install23
3 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/Makefile.config b/perl-install/Makefile.config
index d63a0e620..fee47ffbd 100644
--- a/perl-install/Makefile.config
+++ b/perl-install/Makefile.config
@@ -1,5 +1,5 @@
# -*- Makefile -*-
-VERSION:=12.40
+VERSION:=12.41
SUDO = sudo
TMPDIR = /tmp
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 59faee4ea..ba8d4905b 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,5 +1,8 @@
+Version 12.40 - 12 Jun 2009
+
- do not crash when trying to create a partition on a device with
no cylinder_size
+- workaround gtk crashes by running in sync mode
Version 12.39 - 12 Jun 2009
diff --git a/perl-install/install/install2 b/perl-install/install/install2
index a080c0aef..f9271b5c2 100755
--- a/perl-install/install/install2
+++ b/perl-install/install/install2
@@ -27,6 +27,9 @@ use install::install2;
$::testing = $ENV{PERL_INSTALL_TEST};
$::isStandalone = 0;
+# Workaround crashes in async mode
+unshift (@ARGV, "--sync");
+
install::install2::main(@ARGV);
c::_exit(0);