0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 13:43:04 -05:00
LibreWolf/patches/remove_addons.patch

75 lines
2.8 KiB
Diff
Raw Normal View History

2022-06-01 13:29:53 -05:00
diff --git a/browser/extensions/moz.build b/browser/extensions/moz.build
2022-09-21 04:57:56 -05:00
index 3c6e7eb88689..d923333aa100 100644
2022-06-01 13:29:53 -05:00
--- a/browser/extensions/moz.build
+++ b/browser/extensions/moz.build
2022-09-21 04:57:56 -05:00
@@ -8,7 +8,6 @@ DIRS += [
2022-06-01 13:29:53 -05:00
"formautofill",
"screenshots",
"webcompat",
- "report-site-issue",
"pictureinpicture",
"search-detection",
2022-06-01 14:53:19 -05:00
]
2022-06-01 13:29:53 -05:00
diff --git a/browser/locales/Makefile.in b/browser/locales/Makefile.in
2022-09-21 04:57:56 -05:00
index 7296ca447757..1278582e79d7 100644
2022-06-01 13:29:53 -05:00
--- a/browser/locales/Makefile.in
+++ b/browser/locales/Makefile.in
2022-09-21 04:57:56 -05:00
@@ -56,7 +56,6 @@ l10n-%:
2022-06-01 13:29:53 -05:00
ifneq (,$(wildcard ../extensions/formautofill/locales))
@$(MAKE) -C ../extensions/formautofill/locales AB_CD=$* XPI_NAME=locale-$*
endif
- @$(MAKE) -C ../extensions/report-site-issue/locales AB_CD=$* XPI_NAME=locale-$*
@$(MAKE) -C ../../devtools/client/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) -C ../../devtools/startup/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) l10n AB_CD=$* XPI_NAME=locale-$* PREF_DIR=$(PREF_DIR)
2022-09-21 04:57:56 -05:00
@@ -78,7 +77,6 @@ endif
2022-06-01 13:29:53 -05:00
@$(MAKE) -C ../../devtools/startup/locales chrome AB_CD=$*
@$(MAKE) chrome AB_CD=$*
@$(MAKE) -C $(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales chrome AB_CD=$*
- @$(MAKE) -C ../extensions/report-site-issue/locales chrome AB_CD=$*
package-win32-installer: $(SUBMAKEFILES)
$(MAKE) -C ../installer/windows CONFIG_DIR=l10ngen ZIP_IN='$(ZIP_OUT)' installer
diff --git a/browser/locales/filter.py b/browser/locales/filter.py
2022-09-21 04:57:56 -05:00
index 22eb5cbdb177..5e1f09ff383e 100644
2022-06-01 13:29:53 -05:00
--- a/browser/locales/filter.py
+++ b/browser/locales/filter.py
2022-06-01 14:53:19 -05:00
@@ -17,7 +17,6 @@ def test(mod, path, entity=None):
2022-06-01 13:29:53 -05:00
"devtools/startup",
"browser",
"browser/extensions/formautofill",
- "browser/extensions/report-site-issue",
"extensions/spellcheck",
"other-licenses/branding/firefox",
"browser/branding/official",
diff --git a/browser/locales/l10n.ini b/browser/locales/l10n.ini
2022-09-21 04:57:56 -05:00
index 7a6599740b20..7f976679eefc 100644
2022-06-01 13:29:53 -05:00
--- a/browser/locales/l10n.ini
+++ b/browser/locales/l10n.ini
2022-06-01 14:53:19 -05:00
@@ -13,7 +13,6 @@ dirs = browser
2022-06-01 13:29:53 -05:00
devtools/client
devtools/startup
browser/extensions/formautofill
- browser/extensions/report-site-issue
[includes]
# non-central apps might want to use %(topsrcdir)s here, or other vars
diff --git a/browser/locales/l10n.toml b/browser/locales/l10n.toml
2022-09-21 04:57:56 -05:00
index e9d50107cb10..914a2f1a6310 100644
2022-06-01 13:29:53 -05:00
--- a/browser/locales/l10n.toml
+++ b/browser/locales/l10n.toml
2022-06-01 14:53:19 -05:00
@@ -133,10 +133,6 @@ locales = [
reference = "browser/extensions/formautofill/locales/en-US/**"
2022-06-01 13:29:53 -05:00
l10n = "{l}browser/extensions/formautofill/**"
2022-06-01 14:53:19 -05:00
-[[paths]]
2022-06-01 13:29:53 -05:00
- reference = "browser/extensions/report-site-issue/locales/en-US/**"
- l10n = "{l}browser/extensions/report-site-issue/**"
-
2022-06-01 14:53:19 -05:00
[[paths]]
2022-06-01 13:29:53 -05:00
reference = "services/sync/locales/en-US/**"
l10n = "{l}services/sync/**"
2022-09-21 04:57:56 -05:00
--
2.37.3