summaryrefslogtreecommitdiff
path: root/engine/SCons/Conftest.py
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-16 05:58:13 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-16 05:58:13 +0100
commit6a570afd28bccdb118edde36488ba9834494d6c7 (patch)
tree162100eb912a704d570559c85484ae6d6943fc76 /engine/SCons/Conftest.py
parent72c39ad485d174c2e8e1fef34b8e9e392a94458a (diff)
Imported Upstream version 2.4.1upstream/2.4.1
Diffstat (limited to 'engine/SCons/Conftest.py')
-rw-r--r--engine/SCons/Conftest.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/engine/SCons/Conftest.py b/engine/SCons/Conftest.py
index e9702ff..87a3022 100644
--- a/engine/SCons/Conftest.py
+++ b/engine/SCons/Conftest.py
@@ -684,6 +684,22 @@ return 0;
return ret
+def CheckProg(context, prog_name):
+ """
+ Configure check for a specific program.
+
+ Check whether program prog_name exists in path. If it is found,
+ returns the path for it, otherwise returns None.
+ """
+ context.Display("Checking whether %s program exists..." % prog_name)
+ path = context.env.WhereIs(prog_name)
+ if path:
+ context.Display(path + "\n")
+ else:
+ context.Display("no\n")
+ return path
+
+
#
# END OF PUBLIC FUNCTIONS
#