diff options
Diffstat (limited to 'binary_tarball')
-rwxr-xr-x | binary_tarball/scripts/3_Configure_Source_Code.sh | 7 | ||||
-rwxr-xr-x | binary_tarball/scripts/4_Build_Binary_Tarball.sh | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/binary_tarball/scripts/3_Configure_Source_Code.sh b/binary_tarball/scripts/3_Configure_Source_Code.sh index dc8fea4..a7fb24f 100755 --- a/binary_tarball/scripts/3_Configure_Source_Code.sh +++ b/binary_tarball/scripts/3_Configure_Source_Code.sh @@ -55,9 +55,7 @@ export MOZ_REQUIRE_SIGNING=0 # Features ac_add_options --enable-alsa ac_add_options --enable-jack -ac_add_options --enable-startup-notification ac_add_options --disable-crashreporter -ac_add_options --disable-gconf ac_add_options --disable-updater ac_add_options --disable-tests @@ -120,11 +118,14 @@ fi patch -p1 -i "${CI_PROJECT_DIR}/deb_patches/drop-check-glibc-symbols.patch" patch -p1 -i "${CI_PROJECT_DIR}/deb_patches/build-with-libstdc++-7.patch" patch -p1 -i "${CI_PROJECT_DIR}/deb_patches/drop-libstdcxx-check.patch" -patch -p1 -i "${CI_PROJECT_DIR}/deb_patches/add-missing-include-functional.patch" # Remove some pre-installed addons that might be questionable patch -p1 -i ${CI_PROJECT_DIR}/remove_addons.patch +# Disable (some) megabar functionality +# Adapted from https://github.com/WesleyBranton/userChrome.css-Customizations +patch -p1 -i ${CI_PROJECT_DIR}/megabar.patch + # Disabling Pocket printf "\nDisabling Pocket\n"; sed -i "s/'pocket'/#'pocket'/g" browser/components/moz.build diff --git a/binary_tarball/scripts/4_Build_Binary_Tarball.sh b/binary_tarball/scripts/4_Build_Binary_Tarball.sh index 33e12ad..5820519 100755 --- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh +++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh @@ -61,7 +61,7 @@ rm -f mozconfig # source /root/.cargo/env # install cbindgen -cargo install --version 0.13.2 cbindgen +cargo install --version 0.14.2 cbindgen if [[ $CARCH == 'aarch64' ]]; then |