2
0
mirror of https://github.com/FWGS/hlsdk-xash3d synced 2024-11-22 01:47:45 +01:00

wscript: fix typo

This commit is contained in:
Alibek Omarov 2019-11-07 05:00:43 +03:00
parent 76c2f90249
commit e068ebf610

View File

@ -242,8 +242,8 @@ def configure(conf):
if conf.check_cc(header_name='tgmath.h', mandatory=False):
tgmath_usable = conf.check_cc(fragment='''#include<tgmath.h>
int main(void){ return (int)sin(2.0f); }''',
msg='Checking if tgmath.h is usable', mandatory=False):
conf.define_cond('HAVE_TGMATH_H', tgmath_usable)
msg='Checking if tgmath.h is usable', mandatory=False)
conf.define_cond('HAVE_TGMATH_H', tgmath_usable)
else:
conf.undefine('HAVE_TGMATH_H')