[Python-checkins] cpython: make Python-ast.c depend on Python-ast.h

benjamin.peterson python-checkins at python.org
Fri Jan 13 14:46:03 CET 2012


http://hg.python.org/cpython/rev/bb94a16ac984
changeset:   74357:bb94a16ac984
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Jan 13 08:45:55 2012 -0500
summary:
  make Python-ast.c depend on Python-ast.h

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


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -614,7 +614,7 @@
 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
 	$(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
 
-$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
+$(AST_C): $(AST_H) $(AST_ASDL) $(ASDLGEN_FILES)
 	$(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
 
 Python/compile.o Python/symtable.o Python/ast.o: $(GRAMMAR_H) $(AST_H)

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


More information about the Python-checkins mailing list