diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-08-07 15:40:58 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-08-07 15:40:58 +0000 |
commit | 9703dbc231bdd5e2886152dece7f89098e798020 (patch) | |
tree | 39f405dec541cc5de55bb55992ae0480991640e7 /perl-install | |
parent | d7f4347357402daed151ef989bd9a11e7376e16c (diff) | |
download | drakx-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')
-rw-r--r-- | perl-install/Makefile.config | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/install/install2 | 3 |
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); |