diff options
Diffstat (limited to 'perl-install/install/install2')
-rwxr-xr-x | perl-install/install/install2 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install/install2 b/perl-install/install/install2 index a080c0aef..34f215a21 100755 --- a/perl-install/install/install2 +++ b/perl-install/install/install2 @@ -1,8 +1,8 @@ #!/usr/bin/perl #- PERL_INSTALL_TEST is used to launch stage2 in debug mode -#- Mandrake Graphic Install $Id$ -#- Copyright (C) 1999/2000 Mandrakesoft (pixel@mandrakesoft.com) +#- Mandrake Graphic Install +#- Copyright (C) 1999/2000 Mandrakesoft (pixel) #- #- This program is free software; you can redistribute it and/or modify #- it under the terms of the GNU General Public License as published by @@ -27,6 +27,9 @@ use install::install2; $::testing = $ENV{PERL_INSTALL_TEST}; $::isStandalone = 0; +#- workaround for WebKitGTK bug (mga#31294) +$ENV{WEBKIT_DISABLE_COMPOSITING_MODE} = 1; + install::install2::main(@ARGV); c::_exit(0); |