diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-07 11:27:15 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-07 11:27:15 +0200 |
commit | 670d30e04dfe2c838e6ff0c5512783d50b7c0615 (patch) | |
tree | 90186cdddd33f4064c40c153c6d9f849ac0aaec6 | |
parent | 2de1b32636781fcde3da5d6da13a7261c5ec5b93 (diff) | |
download | basilisk-670d30e04dfe2c838e6ff0c5512783d50b7c0615.tar.gz |
[AM] Clean up addon-signing build leftovers.v2020.05.08
-rw-r--r-- | basilisk/components/nsBrowserGlue.js | 7 | ||||
-rw-r--r-- | basilisk/confvars.sh | 4 |
2 files changed, 1 insertions, 10 deletions
diff --git a/basilisk/components/nsBrowserGlue.js b/basilisk/components/nsBrowserGlue.js index 3693de4..7446d11 100644 --- a/basilisk/components/nsBrowserGlue.js +++ b/basilisk/components/nsBrowserGlue.js @@ -1044,12 +1044,7 @@ BrowserGlue.prototype = { }); } - let signingRequired; - if (AppConstants.MOZ_REQUIRE_SIGNING) { - signingRequired = true; - } else { - signingRequired = Services.prefs.getBoolPref("xpinstall.signatures.required"); - } + let signingRequired = Services.prefs.getBoolPref("xpinstall.signatures.required"); if (signingRequired) { let disabledAddons = AddonManager.getStartupChanges(AddonManager.STARTUP_CHANGE_DISABLED); diff --git a/basilisk/confvars.sh b/basilisk/confvars.sh index f88dab9..048b3ce 100644 --- a/basilisk/confvars.sh +++ b/basilisk/confvars.sh @@ -64,7 +64,3 @@ if test "$OS_ARCH" = "WINNT" -o \ "$OS_ARCH" = "Darwin"; then MOZ_CAN_DRAW_IN_TITLEBAR=1 fi - -# Disable checking that add-ons are signed by the trusted root -MOZ_ADDON_SIGNING=0 -MOZ_REQUIRE_SIGNING=0 |