Discussion:
[Python-3000-checkins] r65817 - python/branches/py3k/Makefile.pre.in
benjamin.peterson
2008-08-18 16:08:02 UTC
Permalink
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) \

Loading...