From: Benjamin Peterson Date: Tue, 13 Jan 2009 21:53:28 +0000 (+0000) Subject: make bytearrayobject.o depend on the stringlib headers #4936 X-Git-Tag: v3.1a1~516 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ae3220c06cb2e08cbbfdc268c6f44c6af748c26;p=python make bytearrayobject.o depend on the stringlib headers #4936 --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 7cd0b4d976..05efc7ede8 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -559,9 +559,9 @@ BYTESTR_DEPS = \ $(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) \