summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-08-07 15:40:58 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-08-07 15:40:58 +0000
commit9703dbc231bdd5e2886152dece7f89098e798020 (patch)
tree39f405dec541cc5de55bb55992ae0480991640e7 /perl-install/install
parentd7f4347357402daed151ef989bd9a11e7376e16c (diff)
downloaddrakx-9703dbc231bdd5e2886152dece7f89098e798020.tar
drakx-9703dbc231bdd5e2886152dece7f89098e798020.tar.gz
drakx-9703dbc231bdd5e2886152dece7f89098e798020.tar.bz2
drakx-9703dbc231bdd5e2886152dece7f89098e798020.tar.xz
drakx-9703dbc231bdd5e2886152dece7f89098e798020.zip
workaround gtk crashes by running in sync mode
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS3
-rwxr-xr-xperl-install/install/install23
2 files changed, 6 insertions, 0 deletions
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);