~mozillateam/firefox/firefox-beta.trusty

« back to all changes in this revision

Viewing changes to debian/patches/mark-distribution-search-engines-as-read-only.patch

  • Committer: Rico Tzschichholz
  • Date: 2019-03-27 10:53:57 UTC
  • Revision ID: ricotz@ubuntu.com-20190327105357-p3plc4yy9ow41d69
* New upstream release from the beta channel (FIREFOX_67_0b5_BUILD1)
* Update patches
  - debian/patches/partially-revert-google-search-update.patch
  - debian/patches/mark-distribution-search-engines-as-read-only.patch
  - debian/patches/support-coinstallable-trunk-build.patch
  - debian/patches/cleanup-old-distribution-search-engines.patch
  - debian/patches/ubuntu-ua-string-changes.patch
  - debian/patches/armhf-disable-unaligned-fp-access-emulation.patch
* Bump build-dep on rustc >= 1.32.0 and cargo >= 0.33
* Update cbindgen to 0.8.2
  - debian/build/create-tarball.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
Forwarded: no
11
11
Bug-Ubuntu: https://launchpad.net/bugs/1791789
12
12
 
13
 
--- a/toolkit/components/search/nsSearchService.js
14
 
+++ b/toolkit/components/search/nsSearchService.js
 
13
--- a/toolkit/components/search/SearchService.jsm
 
14
+++ b/toolkit/components/search/SearchService.jsm
15
15
@@ -3267,7 +3267,7 @@ SearchService.prototype = {
16
16
       try {
17
17
         let file = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsIFile);
18
18
         file.initWithPath(osfile.path);
19
19
-        addedEngine = new Engine(file, false);
20
20
+        addedEngine = new Engine(file, true);
21
 
         await checkForSyncCompletion(addedEngine._asyncInitFromFile(file));
 
21
         await addedEngine._initFromFile(file);
22
22
         engines.push(addedEngine);
23
23
       } catch (ex) {