diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-10-21 21:12:35 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2012-10-21 21:12:35 (GMT) |
commit | aee3c76acf068b5f7b3f709c42b8bbefbce0d84b (patch) | |
tree | 4397322f398893272d4e6df8a5142088e103e260 /Makefile.pre.in | |
parent | 18b7fcc7a627733ae8f9d72cb1f95f3d7d40696e (diff) | |
parent | c4c4842d8625db87bfdd916a3751f90e8a0f9d88 (diff) | |
download | cpython-aee3c76acf068b5f7b3f709c42b8bbefbce0d84b.zip cpython-aee3c76acf068b5f7b3f709c42b8bbefbce0d84b.tar.gz cpython-aee3c76acf068b5f7b3f709c42b8bbefbce0d84b.tar.bz2 |
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
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 9c83248..c4243f3 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -308,7 +308,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= @DISABLE_ASDLGEN@ $(srcdir)/Parser/asdl_c.py +ASDLGEN= @ASDLGEN@ $(srcdir)/Parser/asdl_c.py ########################################################################## # Python |