summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS2
-rwxr-xr-xperl-install/install/install23
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);