diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-10-21 21:05:35 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2012-10-21 21:05:35 (GMT) |
commit | c4c4842d8625db87bfdd916a3751f90e8a0f9d88 (patch) | |
tree | 2d0e8864434375b85d234596b0e55744597a841a /Makefile.pre.in | |
parent | 5f8f0d67771257e762b6ab1b2eaa807f4608c7f5 (diff) | |
download | cpython-c4c4842d8625db87bfdd916a3751f90e8a0f9d88.zip cpython-c4c4842d8625db87bfdd916a3751f90e8a0f9d88.tar.gz cpython-c4c4842d8625db87bfdd916a3751f90e8a0f9d88.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 91e28d2..44c1f15 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -280,7 +280,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 |