From e068ebf61079fdfcd4755b838d89c81b335a4488 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 7 Nov 2019 05:00:43 +0300 Subject: [PATCH] wscript: fix typo --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 04c2a6d8..af830e72 100644 --- a/wscript +++ b/wscript @@ -242,8 +242,8 @@ def configure(conf): if conf.check_cc(header_name='tgmath.h', mandatory=False): tgmath_usable = conf.check_cc(fragment='''#include 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')