summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-08-04 09:54:59 +0200
committerMartin Stransky <stransky@redhat.com>2021-08-04 09:54:59 +0200
commita153f8a474247b786f75d2a82207dd5513b9ec02 (patch)
tree86f0787415c0ff617bcc372cb159630eb767e547
parentAdded fix for rhbz#1988841 - Allow unsigned extensions when installed under n... (diff)
downloadlibrewolf-fedora-ff-a153f8a474247b786f75d2a82207dd5513b9ec02.tar.gz
librewolf-fedora-ff-a153f8a474247b786f75d2a82207dd5513b9ec02.tar.bz2
librewolf-fedora-ff-a153f8a474247b786f75d2a82207dd5513b9ec02.zip
Fixed typo at with-unsigned-addon-scopes
-rw-r--r--firefox-mozconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox-mozconfig b/firefox-mozconfig
index fd2ff9b..469d5c1 100644
--- a/firefox-mozconfig
+++ b/firefox-mozconfig
@@ -14,7 +14,7 @@ ac_add_options --update-channel=release
ac_add_options --allow-addon-sideload
ac_add_options --with-system-fdk-aac
ac_add_options --enable-js-shell
-ac_add_options --with-unsigned-addon-scopes=apps,system
+ac_add_options --with-unsigned-addon-scopes=app,system
export BUILD_OFFICIAL=1
export MOZILLA_OFFICIAL=1
bgstack15