2
0
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:
mittorn 2021-02-12 00:05:41 +03:00
parent d9ed654f04
commit 6e43f9bdd0

View File

@ -143,7 +143,7 @@ def configure(conf):
# Because compatibility with original GoldSrc # Because compatibility with original GoldSrc
if conf.env.DEST_OS in ['win32', 'linux', 'darwin'] and conf.env.DEST_CPU == 'x86_64': if conf.env.DEST_OS in ['win32', 'linux', 'darwin'] and conf.env.DEST_CPU == 'x86_64':
conf.env.BIT32_MANDATORY = not conf.options.ALLOW64 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') Logs.info('WARNING: will build engine for 32-bit target')
else: else:
conf.env.BIT32_MANDATORY = False conf.env.BIT32_MANDATORY = False