From: Benjamin Peterson Date: Tue, 13 Jan 2009 22:15:07 +0000 (+0000) Subject: Merged revisions 68581 via svnmerge from X-Git-Tag: v3.0.1~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73d883a2d1640c46a68e32dc7134c475ed2db8de;p=thirdparty%2FPython%2Fcpython.git Merged revisions 68581 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r68581 | benjamin.peterson | 2009-01-13 15:53:28 -0600 (Tue, 13 Jan 2009) | 1 line make bytearrayobject.o depend on the stringlib headers #4936 ........ --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 724f93234445..4485a81d1521 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -560,9 +560,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) \