diff options
author | Ralf Schmitt <ralf@systemexit.de> | 2011-05-31 22:10:03 (GMT) |
---|---|---|
committer | Ralf Schmitt <ralf@systemexit.de> | 2011-05-31 22:10:03 (GMT) |
commit | 069456267e96c359ec7b4bd4073c3a027629d79a (patch) | |
tree | ed732a1ba6380997a99245439f7d05c828a58536 /Makefile.pre.in | |
parent | ac4e5abc788dfd10474fe3b0a6c5c802d3159763 (diff) | |
download | cpython-069456267e96c359ec7b4bd4073c3a027629d79a.zip cpython-069456267e96c359ec7b4bd4073c3a027629d79a.tar.gz cpython-069456267e96c359ec7b4bd4073c3a027629d79a.tar.bz2 |
disable ASDLGEN if hg won't work, or if python is not installed.
This change makes configure check for
- the existence of a hg repository
- the hg executable itself
- the python executable
Running $(srcdir)/Parser/asdl_c.py (i.e. ASDLGEN) will fail if any of
the above prerequisites is missing, so we now disable it instead.
closes #12225
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index b93e482..694faad 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -274,7 +274,7 @@ AST_ASDL= $(srcdir)/Parser/Python.asdl ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py # XXX Note that a build now requires Python exist before the build starts -ASDLGEN= $(srcdir)/Parser/asdl_c.py +ASDLGEN= @DISABLE_ASDLGEN@ $(srcdir)/Parser/asdl_c.py ########################################################################## # Python |