diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2023-01-02 11:44:46 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2023-01-02 11:44:46 +0000 |
commit | 3603ee36128d4e53254a95861e5d65b84b0e9445 (patch) | |
tree | 644dff7617ef0928d46d2c746ed090f7a940b121 /perl-install | |
parent | 30b8fc8b149a20564cf159b995b2c0cacc0dfe5d (diff) | |
download | drakx-3603ee36128d4e53254a95861e5d65b84b0e9445.tar drakx-3603ee36128d4e53254a95861e5d65b84b0e9445.tar.gz drakx-3603ee36128d4e53254a95861e5d65b84b0e9445.tar.bz2 drakx-3603ee36128d4e53254a95861e5d65b84b0e9445.tar.xz drakx-3603ee36128d4e53254a95861e5d65b84b0e9445.zip |
installer: apply workaround to fix display of release notes (mga#31294)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/install/install2 | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index c4f2064a0..319ac2a64 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- Apply workaround to fix display of release notes (mga#31294) + Version 18.53 - 29 December 2022 - Add openssl config file needed when running cryptsetup (mga#31315) diff --git a/perl-install/install/install2 b/perl-install/install/install2 index ba8b558a9..34f215a21 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 for WebKitGTK bug (mga#31294) +$ENV{WEBKIT_DISABLE_COMPOSITING_MODE} = 1; + install::install2::main(@ARGV); c::_exit(0); |