[Python-checkins] cpython (merge 3.3 -> default): 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:47 CET 2013


http://hg.python.org/cpython/rev/ad42ea70668e
changeset:   87980:ad42ea70668e
parent:      87963:7d897144c39c
parent:      87979:06122a4ecd37
user:        Charles-François Natali <cf.natali at gmail.com>
date:        Sun Dec 15 19:12:52 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
@@ -910,7 +910,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