diff options
| author | Charles-François Natali <cf.natali@gmail.com> | 2013-12-15 18:07:44 (GMT) |
|---|---|---|
| committer | Charles-François Natali <cf.natali@gmail.com> | 2013-12-15 18:07:44 (GMT) |
| commit | 7a2fe9c83c6e2f95eae007be856da30a2b48c189 (patch) | |
| tree | e1e1bafd143f6ad8ea5e19aeea5087f5d5b40552 | |
| parent | d1a61dcc65a85639f273b31fd32267092db9a06e (diff) | |
| download | cpython-7a2fe9c83c6e2f95eae007be856da30a2b48c189.zip cpython-7a2fe9c83c6e2f95eae007be856da30a2b48c189.tar.gz cpython-7a2fe9c83c6e2f95eae007be856da30a2b48c189.tar.bz2 | |
Issue #19965: Make sure that Python-ast.h is properly taken into account in the
makefile.
| -rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 0439193..c1a7f95 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -750,7 +750,8 @@ PYTHON_HEADERS= \ Include/warnings.h \ Include/weakrefobject.h \ pyconfig.h \ - $(PARSER_HEADERS) + $(PARSER_HEADERS) \ + $(AST_H) $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS) |
