summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-04-09 16:14:38 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2016-04-09 16:14:38 (GMT)
commit1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de (patch)
treefdc68838cd90dbb2b9481340770506bf938cb280 /src/engine/SCons
parentc98ae452ff8c03190005739023ff5ba11755aab2 (diff)
parent11cea9c954aff5ce81d85de454dd4547e980b705 (diff)
downloadSCons-1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de.zip
SCons-1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de.tar.gz
SCons-1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de.tar.bz2
Merged in techtonik/scons (pull request #308)
Improve a few docs and messages
Diffstat (limited to 'src/engine/SCons')
-rw-r--r--src/engine/SCons/SConf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/SConf.py b/src/engine/SCons/SConf.py
index 286f230..94027ec 100644
--- a/src/engine/SCons/SConf.py
+++ b/src/engine/SCons/SConf.py
@@ -755,10 +755,10 @@ class CheckContext(object):
A typical test is just a callable with an instance of CheckContext as
first argument:
- def CheckCustom(context, ...)
- context.Message('Checking my weird test ... ')
- ret = myWeirdTestFunction(...)
- context.Result(ret)
+ def CheckCustom(context, ...):
+ context.Message('Checking my weird test ... ')
+ ret = myWeirdTestFunction(...)
+ context.Result(ret)
Often, myWeirdTestFunction will be one of
context.TryCompile/context.TryLink/context.TryRun. The results of