wrapper: add some wine environment variables

This commit is contained in:
Danny Robson 2019-06-28 10:50:32 +10:00
parent 3fc04e698e
commit 32d2f6ecae

View File

@ -110,9 +110,10 @@ def break_path_for_msys2(path):
# target directory for Windows and for every single other system we're likely # target directory for Windows and for every single other system we're likely
# to ever deal with... # to ever deal with...
if is_really_windows(): if is_really_windows():
separator = ':' separator = ';'
depsdir = ['bin'] depsdir = ['bin', 'lib']
searchvar = 'PATH' searchvar = 'WINEPATH'
env['WINEDEBUG'] = '-all'
else: else:
separator = ':' separator = ':'
depsdir = ['lib', 'lib64'] depsdir = ['lib', 'lib64']