Browse Source

waf: fix wrong message about 32-bit build

pull/2/head
mittorn 4 years ago
parent
commit
6e43f9bdd0
  1. 2
      wscript

2
wscript

@ -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

Loading…
Cancel
Save