Changing cached flag from True to False

pull/4952/head
Daniel Mensinger 6 years ago
parent 0e91e4bdd1
commit 6969772a3e
No known key found for this signature in database
GPG Key ID: 54DD94C131E277D4
  1. 2
      mesonbuild/compilers/c.py

@ -763,7 +763,7 @@ class CCompiler(Compiler):
val = env.properties.host.get(varname, None)
if val is not None:
if isinstance(val, bool):
return val, True
return val, False
raise EnvironmentException('Cross variable {0} is not a boolean.'.format(varname))
fargs = {'prefix': prefix, 'func': funcname}

Loading…
Cancel
Save