From e0528ee9338d1ad1695fa1f0973fa91d687152a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Fri, 26 Feb 2021 10:14:07 +0100 Subject: [PATCH] firefox-esr: fix firefox-wayland wrapper It needs MOZ_ENABLE_WAYLAND=1 to actually enable Wayland. --- srcpkgs/firefox-esr/files/firefox-wayland | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/firefox-esr/files/firefox-wayland b/srcpkgs/firefox-esr/files/firefox-wayland index 495f901320..e07fd87b23 100644 --- a/srcpkgs/firefox-esr/files/firefox-wayland +++ b/srcpkgs/firefox-esr/files/firefox-wayland @@ -1,2 +1,2 @@ #!/bin/sh -exec env MOZ_ENABLE_WAYLAND= /usr/lib/firefox/firefox "$@" +exec env MOZ_ENABLE_WAYLAND=1 /usr/lib/firefox/firefox "$@"