From 73d883a2d1640c46a68e32dc7134c475ed2db8de Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 13 Jan 2009 22:15:07 +0000 Subject: [PATCH] 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 ........ --- Makefile.pre.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) \ -- 2.47.3