bugfixes
This commit is contained in:
parent
77b2238a3c
commit
7c3ff63c31
2 changed files with 3 additions and 4 deletions
|
|
@ -11,9 +11,8 @@ 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-distribution-id=io.gitlab.librewolf-community
|
|
||||||
|
|
||||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||||
|
|
||||||
|
|
|
||||||
4
mk.py
4
mk.py
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import os,sys,subprocess
|
import os,sys,subprocess,os.path
|
||||||
|
|
||||||
# native()/bash()/exec() utility functions
|
# native()/bash()/exec() utility functions
|
||||||
def native(cmd,do_print=True):
|
def native(cmd,do_print=True):
|
||||||
|
|
@ -27,7 +27,7 @@ def bash(cmd,do_print=True):
|
||||||
|
|
||||||
def exec(cmd,do_print=True):
|
def exec(cmd,do_print=True):
|
||||||
_native = False
|
_native = False
|
||||||
if not os.path.isFile('c:/mozilla-build/msys/bin/bash.exe'):
|
if not os.path.isfile('c:/mozilla-build/msys/bin/bash.exe'):
|
||||||
_native = True
|
_native = True
|
||||||
if _native:
|
if _native:
|
||||||
return native(cmd,do_print)
|
return native(cmd,do_print)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue