mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2025-01-13 03:56:26 +01:00
waf: fix wrong message about 32-bit build
This commit is contained in:
parent
d9ed654f04
commit
6e43f9bdd0
2
wscript
2
wscript
@ -143,7 +143,7 @@ def configure(conf):
|
||||
# Because compatibility with original GoldSrc
|
||||
if conf.env.DEST_OS in ['win32', 'linux', 'darwin'] and conf.env.DEST_CPU == 'x86_64':
|
||||
conf.env.BIT32_MANDATORY = not conf.options.ALLOW64
|
||||
if not conf.env.BIT32_MANDATORY:
|
||||
if conf.env.BIT32_MANDATORY:
|
||||
Logs.info('WARNING: will build engine for 32-bit target')
|
||||
else:
|
||||
conf.env.BIT32_MANDATORY = False
|
||||
|
Loading…
Reference in New Issue
Block a user