Disable Python support on the CygWin platform, at least until/if the problems are fixed.

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-09-04 18:45:21 +01:00
parent fd7fc3f80e
commit 2c7865d6f2

View File

@@ -10,6 +10,7 @@ import Task
import pproc as subprocess
from Params import fatal, warning
import shutil
import sys
## Adjust python path to look for our local copy of pybindgen
LOCAL_PYBINDGEN_PATH = os.path.join(os.getcwd(), "bindings", "python", "pybindgen")
@@ -90,6 +91,10 @@ def configure(conf):
conf.check_tool('misc')
if sys.platform == 'cygwin':
warning("Python is not supported in CygWin environment. Try MingW instead.")
return
## Check for Python
try:
conf.check_tool('python')