CheckCC and assimilate did not set did_show_result up, and this caused spurious
'error: no result' messages after the check was executed.
git-svn-id: http://scons.tigris.org/svn/scons/trunk@4353
fdb21ef1-2011-0410-befe-
b5e4ea1792b1
def CheckCC(context):
res = SCons.Conftest.CheckCC(context)
+ context.did_show_result = 1
return not res
def CheckCXX(context):
res = SCons.Conftest.CheckCXX(context)
+ context.did_show_result = 1
return not res
def CheckSHCC(context):
res = SCons.Conftest.CheckSHCC(context)
+ context.did_show_result = 1
return not res
def CheckSHCXX(context):
res = SCons.Conftest.CheckSHCXX(context)
+ context.did_show_result = 1
return not res
# Bram: Make this function obsolete? CheckHeader() is more generic.