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

benjamin.peterson python-checkins at python.org
Tue Jan 13 22:53:28 CET 2009


Author: benjamin.peterson
Date: Tue Jan 13 22:53:28 2009
New Revision: 68581

Log:
make bytearrayobject.o depend on the stringlib headers #4936

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	Tue Jan 13 22:53:28 2009
@@ -559,9 +559,9 @@
 		$(srcdir)/Objects/stringlib/unicodedefs.h \
 		$(srcdir)/Objects/stringlib/localeutil.h
 
-Objects/stringobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
+Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
 
-Objects/bytesobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) 
+Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) 
 
 Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
                                              $(BYTESTR_DEPS) \


More information about the Python-checkins mailing list