[Python-checkins] cpython (3.3): Issue #19965: Make sure that Python-ast.h is properly taken into account in the

charles-francois.natali python-checkins at python.org
Mon Dec 16 13:50:43 CET 2013


http://hg.python.org/cpython/rev/cfe0a293551f
changeset:   87978:cfe0a293551f
branch:      3.3
parent:      87813:78efa2c06447
user:        Charles-François Natali <cf.natali at gmail.com>
date:        Sun Dec 15 19:09:00 2013 +0100
summary:
  Issue #19965: Make sure that Python-ast.h is properly taken into account in the
makefile.

files:
  Makefile.pre.in |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -848,7 +848,8 @@
 		$(srcdir)/Include/warnings.h \
 		$(srcdir)/Include/weakrefobject.h \
 		pyconfig.h \
-		$(PARSER_HEADERS)
+		$(PARSER_HEADERS) \
+		$(AST_H)
 
 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list