aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'browser/linux/build.sh')
-rwxr-xr-xbrowser/linux/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser/linux/build.sh b/browser/linux/build.sh
index 0714cef..2007d4b 100755
--- a/browser/linux/build.sh
+++ b/browser/linux/build.sh
@@ -76,8 +76,8 @@ hg clone https://hg.mozilla.org/releases/mozilla-release;
printf "\nCopying branding to firefox source code\n";
cp -r $SOURCE_FOLDER/* ./mozilla-release;
-# Adds fix to allow user preferences to be locked
-sed -i '\|MOZ_ASSERT(!aIsLocked); // `locked` is disallowed in user pref files|d' ./mozilla-release/modules/libpref/Preferences.cpp;
+#Disables pocket
+sed -i "s/'pocket'/#'pocket'/g" ./mozilla-release/browser/components/moz.build;
cd mozilla-release;
bgstack15