summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-12-14 21:32:35 +0100
committerMartin Stransky <stransky@redhat.com>2020-12-14 21:32:35 +0100
commit757ced5c2a866e9ad53702690a6a0a9e0b609474 (patch)
treee06bc6dd56940d4596693b413fadb801389dd8da /firefox.spec
parentAdded missing file (diff)
downloadlibrewolf-fedora-ff-757ced5c2a866e9ad53702690a6a0a9e0b609474.tar.gz
librewolf-fedora-ff-757ced5c2a866e9ad53702690a6a0a9e0b609474.tar.bz2
librewolf-fedora-ff-757ced5c2a866e9ad53702690a6a0a9e0b609474.zip
Remove MOZ_ENABLE_WAYLAND=0 as it run Firefox on Wayland
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 3eefb70..8a917d1 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -691,7 +691,7 @@ fi
%if %{test_on_wayland}
MOZ_ENABLE_WAYLAND=1 ./mach build 2>&1 | cat -
%else
-MOZ_ENABLE_WAYLAND=0 xvfb-run ./mach build 2>&1 | cat -
+xvfb-run ./mach build 2>&1 | cat -
%endif
%else
./mach build 2>&1 | cat -
bgstack15