fixing issue #148

This commit is contained in:
Bert van der Weerd 2022-01-18 14:08:15 +01:00
parent 0ffb0ad651
commit 7fdbe2af4a
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1
2 changed files with 6 additions and 5 deletions

View file

@ -11,16 +11,17 @@ ac_add_options --enable-optimize
ac_add_options --enable-release ac_add_options --enable-release
ac_add_options --enable-rust-simd 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-branding=browser/branding/librewolf
ac_add_options --with-unsigned-addon-scopes=app,system ac_add_options --with-unsigned-addon-scopes=app,system
# see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49 # 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_CRASHREPORTER=0
mk_add_options MOZ_DATA_REPORTING=0 mk_add_options MOZ_DATA_REPORTING=0
mk_add_options MOZ_NORMANTY=0 mk_add_options MOZ_NORMANTY=0
mk_add_options MOZ_REQUIRE_SIGNING=
mk_add_options MOZ_SERVICES_HEALTHREPORT=0 mk_add_options MOZ_SERVICES_HEALTHREPORT=0
mk_add_options MOZ_TELEMETRY_REPORTING=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-updater
ac_add_options --disable-maintenance-service ac_add_options --disable-maintenance-service
ac_add_options --enable-strip ac_add_options --enable-strip
ac_add_options --enable-default-toolkit=cairo-windows

4
mk.py
View file

@ -83,7 +83,9 @@ def build():
def artifacts(): 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: with open('version','r') as file1:
version = file1.read().rstrip() version = file1.read().rstrip()