[Python-3000-checkins] r65817 - python/branches/py3k/Makefile.pre.in
benjamin.peterson
python-3000-checkins at python.org
Mon Aug 18 18:08:02 CEST 2008
Author: benjamin.peterson
Date: Mon Aug 18 18:08:02 2008
New Revision: 65817
Log:
fix dependencies after rename
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 Mon Aug 18 18:08:02 2008
@@ -556,9 +556,9 @@
$(srcdir)/Objects/stringlib/unicodedefs.h \
$(srcdir)/Objects/stringlib/localeutil.h
-Objects/stringobject.o: $(srcdir)/Objects/stringobject.c $(BYTESTR_DEPS)
+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/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
$(BYTESTR_DEPS) \
More information about the Python-3000-checkins
mailing list