From 7fdbe2af4a025c25e88e585ca051bc66e05f49f6 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Tue, 18 Jan 2022 14:08:15 +0100 Subject: [PATCH] fixing issue #148 --- assets/mozconfig.windows | 7 +++---- mk.py | 4 +++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/assets/mozconfig.windows b/assets/mozconfig.windows index 2312bb5..17045d5 100644 --- a/assets/mozconfig.windows +++ b/assets/mozconfig.windows @@ -11,16 +11,17 @@ ac_add_options --enable-optimize ac_add_options --enable-release ac_add_options --enable-rust-simd -ac_add_options --with-app-name=librewolf +#ac_add_options --with-app-name=librewolf ac_add_options --with-branding=browser/branding/librewolf ac_add_options --with-unsigned-addon-scopes=app,system # see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49 +export MOZ_REQUIRE_SIGNING= + mk_add_options MOZ_CRASHREPORTER=0 mk_add_options MOZ_DATA_REPORTING=0 mk_add_options MOZ_NORMANTY=0 -mk_add_options MOZ_REQUIRE_SIGNING= mk_add_options MOZ_SERVICES_HEALTHREPORT=0 mk_add_options MOZ_TELEMETRY_REPORTING=0 @@ -33,5 +34,3 @@ mk_add_options MOZ_TELEMETRY_REPORTING=0 ac_add_options --disable-updater ac_add_options --disable-maintenance-service ac_add_options --enable-strip - -ac_add_options --enable-default-toolkit=cairo-windows diff --git a/mk.py b/mk.py index f2d9b66..b76102b 100755 --- a/mk.py +++ b/mk.py @@ -83,7 +83,9 @@ def build(): def artifacts(): - _with_app_name = True # Trying to fix issue #146 -> https://gitlab.com/librewolf-community/browser/windows/-/issues/146 + # Trying to fix issue #146 -> https://gitlab.com/librewolf-community/browser/windows/-/issues/146 + # (keep this False for now) + _with_app_name = False with open('version','r') as file1: version = file1.read().rstrip()