diff options
author | Mark H Weaver <mhw@netris.org> | 2019-10-28 13:05:28 -0400 |
---|---|---|
committer | Mike Gerwitz <mtg@gnu.org> | 2019-10-30 00:28:20 -0400 |
commit | 7f3e2c35a33c6431ae47b8eaf1c81e5cc4561c87 (patch) | |
tree | 58b822ce7357d069bd7690aeab4148cec475a875 /data/patches/moz-configure-changes.patch | |
parent | 613e70ca9888e94a0252e994a6989694ab48def0 (diff) |
Disable MOZ_BLOCK_PROFILE_DOWNGRADE.
It would be desirable to prevent downgrades from one major version of
IceCat to another. However, as MOZ_BLOCK_PROFILE_DOWNGRADE is
currently implemented, it prevents downgrades from one build of
IceCat-68.2 to an earlier build of IceCat-68.2. Until we can find a
satisfactory solution, we disable this functionality entirely.
* data/patches/moz-configure-changes.patch: Set
MOZ_BLOCK_PROFILE_DOWNGRADE to 'False'.
Diffstat (limited to 'data/patches/moz-configure-changes.patch')
-rw-r--r-- | data/patches/moz-configure-changes.patch | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/data/patches/moz-configure-changes.patch b/data/patches/moz-configure-changes.patch index aa6f1a5..53091a4 100644 --- a/data/patches/moz-configure-changes.patch +++ b/data/patches/moz-configure-changes.patch @@ -1,6 +1,6 @@ --- a/browser/moz.configure.orig 1980-01-01 18:59:51.000000000 -0500 -+++ b/browser/moz.configure 2019-10-28 01:36:13.132873871 -0400 -@@ -5,9 +5,9 @@ ++++ b/browser/moz.configure 2019-10-28 13:04:11.469562089 -0400 +@@ -5,10 +5,10 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. imply_option('MOZ_PLACES', True) @@ -8,7 +8,9 @@ +imply_option('MOZ_SERVICES_HEALTHREPORT', False) imply_option('MOZ_SERVICES_SYNC', True) -imply_option('MOZ_DEDICATED_PROFILES', True) +-imply_option('MOZ_BLOCK_PROFILE_DOWNGRADE', True) +imply_option('MOZ_DEDICATED_PROFILES', False) - imply_option('MOZ_BLOCK_PROFILE_DOWNGRADE', True) ++imply_option('MOZ_BLOCK_PROFILE_DOWNGRADE', False) with only_when(target_is_linux & compile_environment): + option(env='MOZ_NO_PIE_COMPAT', |