[Python-checkins] r71223 - python/branches/py3k/Makefile.pre.in

georg.brandl python-checkins at python.org
Sun Apr 5 13:11:12 CEST 2009


Author: georg.brandl
Date: Sun Apr  5 13:11:12 2009
New Revision: 71223

Log:
#5606: fix formatter.h dependencies in the Makefile.

Modified:
   python/branches/py3k/Makefile.pre.in

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Sun Apr  5 13:11:12 2009
@@ -585,8 +585,7 @@
 Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) 
 
 Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
-				$(BYTESTR_DEPS) \
-				$(srcdir)/Objects/stringlib/formatter.h
+				$(BYTESTR_DEPS)
 
 $(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES)
 	$(OPCODETARGETGEN) $(OPCODETARGETS_H)
@@ -594,7 +593,8 @@
 Python/ceval.o: $(OPCODETARGETS_H)
 
 Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
-				$(BYTESTR_DEPS)
+				$(BYTESTR_DEPS) \
+				$(srcdir)/Objects/stringlib/formatter.h
 
 
 ############################################################################


More information about the Python-checkins mailing list